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

        <c-col :span="14">
wangna committed
22
            <el-form-item label="历史概述">
23
                <c-input
24
                disabled
25 26 27 28
                    type="textarea"
                    v-model="model.didgrp.blk.insbnkame"
                    maxlength="500"
                    show-word-limit
wangna committed
29
                    placeholder="请输入历史概述"
30 31 32 33 34 35 36 37 38 39 40 41
                    :rows="10"
                ></c-input>
            </el-form-item>
        </c-col>

        <c-col :span="14">
            <el-form-item label="修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.insbnk"
                    maxlength="50"
                    show-word-limit
wangna committed
42
                    placeholder="请输入"
43 44 45 46 47
                    :rows="10"
                ></c-input>
            </el-form-item>
        </c-col>
    </div>
48 49 50
</template>
<script>
import Api from "~/service/Api";
wangren committed
51
import commonProcess from "~/mixin/commonProcess";
52
import CodeTable from "~/config/CodeTable";
53
import Event from "~/model/Ditame/Event";
54 55

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