Addbcb.vue 3.31 KB
Newer Older
1
<template>
SunJie committed
2 3
    <div class="eibs-tab">

潘际乾 committed
4
        <c-col :span="24">
SunJie committed
5 6 7
            <el-form-item label="特殊规定" prop="litameadv">
                    <c-select
                        v-model="model.litameadv"
吴佳 committed
8
                        style="width: 50%"
SunJie committed
9 10 11 12 13 14 15 16 17 18 19
                        placeholder="请选择特殊规定"
                    >
                        <el-option
                            v-for="item in codes.litameadv"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
            </el-form-item>
潘际乾 committed
20
        </c-col>
SunJie committed
21

潘际乾 committed
22
        <c-col :span="24">
23
            <el-form-item label="" prop="ameadvrmk">
SunJie committed
24
                <c-input
25
                    :disabled="model.litameadv === '无特殊规定'"
SunJie committed
26 27
                    type="textarea"
                    v-model="model.ameadvrmk"
28
                    :rows="4"
SunJie committed
29 30 31 32 33
                    maxlength="68"
                    style="width: 50%"
                    show-word-limit
                ></c-input>
            </el-form-item>
潘际乾 committed
34
        </c-col>
SunJie committed
35

潘际乾 committed
36
        <c-col :span="24">
37
            <el-form-item label="开证行" prop="bchname">
SunJie committed
38 39 40
                <c-input
                    v-model="model.bchname"
                    maxlength="40"
41
                    style="width: 50%"
wangna committed
42
                    placeholder="请输入开证行名称"
SunJie committed
43 44
                ></c-input>
            </el-form-item>
潘际乾 committed
45
        </c-col>
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
        <c-col :span="24">
            <el-form-item label="开证行地址" prop="issadr">
                <c-input
                    v-model="model.issadr"
                    type="textarea"
                    :rows="4"
                    maxlength="40"
                    style="width: 50%"
                    show-word-limit
                ></c-input>
            </el-form-item>
        </c-col>
        <c-col :span="24">
            <el-form-item label="开证行邮编" prop="pobzip">
                <c-input
                    v-model="model.pobzip"
                    maxlength="10"
                    style="width: 50%"
wangna committed
64
                    placeholder="请输入开证行邮编"
65 66 67 68 69 70 71 72 73
                ></c-input>
            </el-form-item>
        </c-col>
        <c-col :span="24">
            <el-form-item label="开证行电话" prop="tel">
                <c-input
                    v-model="model.tel"
                    maxlength="16"
                    style="width: 50%"
wangna committed
74
                    placeholder="请输入开证行电话"
75 76 77 78 79 80 81 82 83
                ></c-input>
            </el-form-item>
        </c-col>
        <c-col :span="24">
            <el-form-item label="开证行传真" prop="fax">
                <c-input
                    v-model="model.fax"
                    maxlength="16"
                    style="width: 50%"
wangna committed
84
                    placeholder="请输入开证行传真"
85 86 87
                ></c-input>
            </el-form-item>
        </c-col>
SunJie committed
88
    </div>
89 90
</template>
<script>
wangren committed
91
import commonProcess from "~/mixin/commonProcess";
SunJie committed
92
import Event from "~/model/Ditopn/Event";
93 94

export default {
95
    inject: ['root'],
SunJie committed
96
    props: ["model", "codes"],
wangren committed
97
    mixins: [commonProcess],
SunJie committed
98 99
    data() {
        return {};
100
    },
SunJie committed
101 102 103
    methods: { ...Event },
    created: function () {},
};
104 105 106
</script>
<style>
</style>