Dogpame.vue 2.22 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <!-- <c-col :span="12">
SunJie committed
4 5
            <span v-text="model.ditamep.hfmdes" data-path=".ditamep.hfmdes">
            </span>
潘际乾 committed
6
        </c-col> -->
SunJie committed
7

潘际乾 committed
8
        <c-col :span="11">
SunJie committed
9 10 11 12 13 14 15
            <el-form-item label="货物描述">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrgod"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Description of Goods"
16
                    :rows="12"
SunJie committed
17 18 19
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
20
        </c-col>
SunJie committed
21

22
        <c-col :span="11" :offset="1">
SunJie committed
23 24 25 26 27 28 29
            <el-form-item label="修改历史">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrgodame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Description of Goods Amendment History"
30
                    :rows="12"
SunJie committed
31 32 33
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
34
        </c-col>
SunJie committed
35

36
        <c-col :span="11">
SunJie committed
37 38 39 40 41 42 43 44 45 46
            <el-form-item label="修改内容">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.lcrgod"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Description of Goods amendment"
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
47
        </c-col>
SunJie committed
48

49
        <c-col :span="1">
SunJie committed
50 51 52 53
            <c-button
                size="small"
                type="primary"
                @click="onLcrgodameButtxmsel"
54 55 56 57
                style="margin-left:5px"
            >
            ...
            </c-button>   
潘际乾 committed
58
        </c-col>
SunJie committed
59
    </div>
60 61
</template>
<script>
SunJie committed
62
import Api from "~/service/Api";
63
import CommonProcess from "~/mixin/CommonProcess";
SunJie committed
64 65
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
66 67

export default {
68
    inject: ['root'],
SunJie committed
69
    props: ["model", "codes"],
70
    mixins: [CommonProcess],
SunJie committed
71 72
    data() {
        return {};
73
    },
SunJie committed
74 75 76
    methods: { ...Event },
    created: function () {},
};
77 78 79
</script>
<style>
</style>