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

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

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
        <c-col :span="11" :offset="1">
            <el-form-item label="修改历史" prop="didgrp.blk.lcrgodame">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrgodame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Description of Goods Amendment History"
                    :rows="12"
                    disabled
                ></c-input>
            </el-form-item>
        </c-col>

        <c-col :span="11">
            <el-form-item label="修改内容" prop="trnmod.swiadd.lcrgod">
                <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>
        </c-col>

        <c-col :span="1" style="text-align: right">
            <c-button size="small" style="margin:0 0;" type="primary" icon="el-icon-search" @click="onLcrgodameButtxmsel">
            </c-button>   
        </c-col>
    </div>
54 55 56
</template>
<script>
import Api from "~/service/Api";
wangren committed
57
import commonProcess from "~/mixin/commonProcess";
58
import CodeTable from "~/config/CodeTable";
59
import Event from "~/model/Ditame/Event";
60 61

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