Inspame.vue 2.04 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col >
liushikai committed
4
            <el-form-item class="formItemLabel" label="Instructions to Paying/Accepting/Negotiating Bank" label-width="100%">
SunJie committed
5
            </el-form-item>
潘际乾 committed
6 7
        </c-col>
        <c-col :span="14">
SunJie committed
8
            <el-form-item label="Original Text">
SunJie committed
9 10 11
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.insbnk"
12
                    maxlength="500"
SunJie committed
13 14 15 16 17
                    show-word-limit
                    placeholder="请输入Instructions to Paying/Accepting/Negotiating Bank"
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
18
        </c-col>
SunJie committed
19

潘际乾 committed
20
        <c-col :span="14">
SunJie committed
21 22 23 24
            <el-form-item label="Hostoric overview">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.insbnkame"
25
                    maxlength="500"
SunJie committed
26 27 28 29 30
                    show-word-limit
                    placeholder="请输入Instructions to P/A/N Amendment History"
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
31
        </c-col>
SunJie committed
32

潘际乾 committed
33
        <c-col :span="14">
SunJie committed
34 35 36 37 38 39 40 41 42 43
            <el-form-item label="修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.insbnk"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Instruction to P/A/N Bank amendment"
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
44
        </c-col>
SunJie committed
45
    </div>
46 47
</template>
<script>
SunJie committed
48
import Api from "~/service/Api";
wangren committed
49
import commonProcess from "~/mixin/commonProcess";
SunJie committed
50 51
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
52 53

export default {
54
    inject: ['root'],
SunJie committed
55
    props: ["model", "codes"],
wangren committed
56
    mixins: [commonProcess],
SunJie committed
57 58
    data() {
        return {};
59
    },
SunJie committed
60 61 62
    methods: { ...Event },
    created: function () {},
};
63
</script>
liushikai committed
64 65 66 67
<style scoped>
.formItemLabel >>> .el-form-item__label{
    text-align: left;
}
68
</style>