Dogpame.vue 1.98 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col :span="11">
SunJie committed
4 5 6 7 8 9
            <el-form-item label="货物描述">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrgod"
                    maxlength="65"
                    show-word-limit
wangna committed
10
                    placeholder="请输入货物描述"
11
                    :rows="12"
SunJie committed
12 13 14
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
15
        </c-col>
SunJie committed
16

17
        <c-col :span="11" :offset="1">
SunJie committed
18 19 20 21 22 23
            <el-form-item label="修改历史">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrgodame"
                    maxlength="50"
                    show-word-limit
wangna committed
24
                    placeholder="请输入修改历史"
25
                    :rows="12"
SunJie committed
26 27 28
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
29
        </c-col>
SunJie committed
30

31
        <c-col :span="11">
SunJie committed
32 33 34 35 36 37
            <el-form-item label="修改内容">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.lcrgod"
                    maxlength="65"
                    show-word-limit
wangna committed
38
                    placeholder="请输入修改内容"
SunJie committed
39 40 41
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
42
        </c-col>
SunJie committed
43

44 45
        <c-col :span="1" style="text-align: right">
            <c-button size="small" style="margin:0 0;" type="primary" icon="el-icon-search" @click="onLcrgodameButtxmsel">
46
            </c-button>   
潘际乾 committed
47
        </c-col>
SunJie committed
48
    </div>
49 50
</template>
<script>
SunJie committed
51
import Api from "~/service/Api";
wangren committed
52
import commonProcess from "~/mixin/commonProcess";
SunJie committed
53 54
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
55 56

export default {
57
    inject: ['root'],
SunJie committed
58
    props: ["model", "codes"],
wangren committed
59
    mixins: [commonProcess],
SunJie committed
60 61
    data() {
        return {};
62
    },
SunJie committed
63 64 65
    methods: { ...Event },
    created: function () {},
};
66 67 68
</script>
<style>
</style>