Inspame.vue 1.96 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col >
wangna committed
4
            <el-form-item class="formItemLabel" label="给付款、承兑、议付银行的指示" label-width="100%">
SunJie committed
5
            </el-form-item>
潘际乾 committed
6 7
        </c-col>
        <c-col :span="14">
wangna committed
8
            <el-form-item label="指示内容">
SunJie committed
9 10 11
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.insbnk"
12
                    maxlength="500"
SunJie committed
13
                    show-word-limit
wangna committed
14
                    placeholder="请输入指示内容"
SunJie committed
15 16 17
                    :rows="10"
                ></c-input>
            </el-form-item>
潘际乾 committed
18
        </c-col>
SunJie committed
19

潘际乾 committed
20
        <c-col :span="14">
wangna committed
21
            <el-form-item label="指示内容历史修改记录">
SunJie committed
22 23 24
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.insbnkame"
25
                    maxlength="500"
SunJie committed
26
                    show-word-limit
wangna committed
27
                    placeholder="请输入指示内容历史修改记录"
SunJie committed
28 29 30
                    :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
            <el-form-item label="修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.insbnk"
                    maxlength="50"
                    show-word-limit
wangna committed
40
                    placeholder="请输入"
SunJie committed
41 42 43
                    :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>