Dogpame.vue 2.18 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 50
        <c-col :span="1" style="text-align: right">
            <c-button size="small" style="margin:0 0;" type="primary" icon="el-icon-search" @click="onLcrgodameButtxmsel">
51
            </c-button>   
潘际乾 committed
52
        </c-col>
SunJie committed
53
    </div>
54 55
</template>
<script>
SunJie committed
56
import Api from "~/service/Api";
wangren committed
57
import commonProcess from "~/mixin/commonProcess";
SunJie committed
58 59
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
60 61

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