Dorpame.vue 2.09 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col :span="11">
4
            <el-form-item label="单据要求" prop="didgrp.blk.lcrdoc">
SunJie committed
5 6 7 8 9 10
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrdoc"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Documents Required"
11
                    :rows="12"
SunJie committed
12 13 14
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
15
        </c-col>
SunJie committed
16

17 18
        <c-col :span="11" :offset="1">
            <el-form-item label="单据要求历史修改" prop="didgrp.blk.lcrdocame">
SunJie committed
19 20 21 22 23 24
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.lcrdocame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Documents Required Amendment History"
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 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

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="onLcrdocameButtxmsel">
SunJie committed
46
            </c-button>
潘际乾 committed
47
        </c-col>
SunJie committed
48
    </div>
49 50
</template>
<script>
SunJie committed
51
import Api from "~/service/Api";
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"],
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>