Addbcb.vue 3.63 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col :span="24">
SunJie committed
4 5 6 7
            <el-form-item label="货物/服务名称" prop="godnam">
                <c-input
                    v-model="model.godnam"
                    maxlength="40"
8
                    style="width: 50%"
SunJie committed
9 10 11
                    placeholder="货物服务名称"
                ></c-input>
            </el-form-item>
潘际乾 committed
12
        </c-col>
SunJie committed
13

潘际乾 committed
14
        <c-col :span="24">
SunJie committed
15 16 17
            <el-form-item label="特殊规定" prop="litameadv">
                    <c-select
                        v-model="model.litameadv"
吴佳 committed
18
                        style="width: 50%"
SunJie committed
19 20 21 22 23 24 25 26 27 28 29
                        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
30
        </c-col>
SunJie committed
31

潘际乾 committed
32
        <c-col :span="24">
33
            <el-form-item label="" prop="ameadvrmk">
SunJie committed
34
                <c-input
35
                    :disabled="model.litameadv === '无特殊规定'"
SunJie committed
36 37
                    type="textarea"
                    v-model="model.ameadvrmk"
38
                    :rows="4"
SunJie committed
39 40 41 42 43
                    maxlength="68"
                    style="width: 50%"
                    show-word-limit
                ></c-input>
            </el-form-item>
潘际乾 committed
44
        </c-col>
SunJie committed
45

潘际乾 committed
46
        <c-col :span="24">
47
            <el-form-item label="开证行" prop="bchname">
SunJie committed
48 49 50
                <c-input
                    v-model="model.bchname"
                    maxlength="40"
51
                    style="width: 50%"
SunJie committed
52 53 54
                    placeholder="请输入branch  name"
                ></c-input>
            </el-form-item>
潘际乾 committed
55
        </c-col>
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
        <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%"
                    placeholder="请输入pobzip"
                ></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%"
                    placeholder="请输入tel"
                ></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%"
                    placeholder="请输入fax"
                ></c-input>
            </el-form-item>
        </c-col>
SunJie committed
98
    </div>
99 100
</template>
<script>
wangren committed
101
import commonProcess from "~/mixin/commonProcess";
SunJie committed
102
import Event from "~/model/Ditopn/Event";
103 104

export default {
105
    inject: ['root'],
SunJie committed
106
    props: ["model", "codes"],
wangren committed
107
    mixins: [commonProcess],
SunJie committed
108 109
    data() {
        return {};
110
    },
SunJie committed
111 112 113
    methods: { ...Event },
    created: function () {},
};
114 115 116
</script>
<style>
</style>