1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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
98
99
100
101
102
103
104
105
106
<template>
<div class="eibs-tab">
<!-- S0000417 : 外汇贷款 -->
<c-col :span="12">
<el-form-item :label="$t('cptopn.S0000417')" prop="cfatrt.cfaflg">
<c-select v-model="model.cfatrt.cfaflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cptopn.S0000417')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.cfatrt.basflg">{{$t('cptopn.CG000423')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.cfatrt.dclflg">{{$t('cptopn.CG000424')}}</c-checkbox>
</c-col>
<!-- S0000418 : 地区机构号 -->
<c-col :span="12">
<el-form-item :label="$t('cptopn.S0000418')" prop="cfatrt.ownextkey">
<c-select v-model="model.cfatrt.ownextkey" style="width:100%" :placeholder="$t('other.please_enter')+$t('cptopn.S0000418')">
</c-select>
</el-form-item>
</c-col>
<!-- S0000425 : 是否外保内贷 -->
<c-col :span="12">
<el-form-item label="是否外保内�'�" prop="cfatrt.cdaflg">
<c-select v-model="model.cfatrt.cdaflg" style="width:100%" placeholder="请输入">
</c-select>
</el-form-item>
</c-col>
<!-- S0000419 : 海外代付 -->
<c-col :span="12">
<el-form-item :label="$t('cptopn.S0000419')" prop="cfadft.cfaflg">
<c-select v-model="model.cfadft.cfaflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cptopn.S0000419')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.cfadft.basflg">{{$t('cptopn.CG000426')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.cfadft.dclflg">{{$t('cptopn.CG000427')}}</c-checkbox>
</c-col>
<!-- S0000420 : 地区机构号 -->
<c-col :span="12">
<el-form-item :label="$t('cptopn.S0000420')" prop="cfadft.ownextkey">
<c-select v-model="model.cfadft.ownextkey" style="width:100%" :placeholder="$t('other.please_enter')+$t('cptopn.S0000420')">
</c-select>
</el-form-item>
</c-col>
<!-- S0000026 : 资金用途 -->
<c-col :span="12">
<el-form-item :label="$t('cfatrt.S0000026')" prop="cfatrt.cda.useofunds">
<c-select v-model="model.cfatrt.cda.useofunds" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfatrt.S0000026')">
</c-select>
</el-form-item>
</c-col>
<!-- S0000023 : 中资企业境外担保项下境内贷款额度币种 -->
<c-col :span="12">
<el-form-item :label="$t('cfatrt.S0000023')" prop="cfatrt.cda.cfeogudcurr">
<c-select v-model="model.cfatrt.cda.cfeogudcurr" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfatrt.S0000023')">
</c-select>
</el-form-item>
</c-col>
<!-- S0000024 : 中资企业境外担保项下境内贷款额度金额 -->
<c-col :span="12">
<el-form-item :label="$t('cfatrt.S0000024')" prop="cfatrt.cda.cfeogudamount">
<c-input v-model="model.cfatrt.cda.cfeogudamount" :placeholder="$t('other.please_enter')+$t('cfatrt.S0000024')"></c-input>
</el-form-item>
</c-col>
<!-- S0000022 : 中资企业境外担保项下贷款业务批准文件号 -->
<c-col :span="12">
<el-form-item :label="$t('cfatrt.S0000022')" prop="cfatrt.cda.cfeogudad">
<c-input type="textarea" v-model="model.cfatrt.cda.cfeogudad" maxlength="32" show-word-limit :placeholder="$t('other.please_enter')+$t('cfatrt.S0000022')"></c-input>
</el-form-item>
</c-col>
</div>
</template>
<script>
import event from "../event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {};
},
methods: {},
created() {}
};
</script>
<style>
</style>