Dorpame.vue 2.07 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 10 11 12 13 14
            <el-form-item label="单据要求">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrdoc"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Documents Required"
                    :rows="15"
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
15
        </c-col>
SunJie committed
16

潘际乾 committed
17
        <c-col :span="12">
SunJie committed
18 19 20 21 22 23 24 25 26 27 28
            <el-form-item label="单据要求历史修改">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrdocame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Documents Required Amendment History"
                    :rows="15"
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
29
        </c-col>
SunJie committed
30

潘际乾 committed
31
        <c-col :offset="8" :span="14">
SunJie committed
32 33 34 35 36 37 38 39 40 41
            <el-form-item label="单据要求修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.lcrdoc"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Documents Required amendment"
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
42
        </c-col>
SunJie committed
43

潘际乾 committed
44
        <c-col :span="2">
SunJie committed
45 46 47 48 49 50 51
            <c-button
                size="small"
                type="primary"
                icon="el-icon-search"
                @click="onLcrdocameButtxmsel"
            >
            </c-button>
潘际乾 committed
52
        </c-col>
SunJie committed
53
    </div>
54 55
</template>
<script>
SunJie committed
56
import Api from "~/service/Api";
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"],
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>