Commit d24c515a by 李少勇

码表字段联调

parent aa0515fe
......@@ -3,7 +3,7 @@ export default {
methods: {
// 提交
handleSubmit () {
console.log('提交')
console.log('提交', this.model)
},
// 检核
handleCheck () {
......@@ -61,5 +61,23 @@ export default {
purposChange (key, value) {
this.handleChangeForm(key, value)
},
// 初始化保函开立类型码表下拉列表
async queryHndtypCodeTableList () {
let params = {
gitp: {
swiftflg: this.model.gitp.swiftflg
},
gidgrp: {
rec: {
purpos: this.model.gidgrp.rec.purpos
}
},
transName : this.trnName.toUpperCase()
}
let res = await Api.post('/service/gitopn/initHndtyp', params)
if (res.respCode == SUCCESS) {
this.$set(this.codes, 'voHndtyp', res.data)
}
}
},
}
\ No newline at end of file
......@@ -138,7 +138,7 @@
v-model="model.gidgrp.rec.purpos"
style="width: 100%"
placeholder="请选择支出目的"
:code="getValues('gidgrp.rec.purpos')"
:code="codes.purpos"
>
</c-select>
</el-form-item>
......@@ -154,7 +154,7 @@
v-model="model.gidgrp.rec.hndtyp"
style="width: 100%"
placeholder="请选择保函开立类型"
:code="getValues('gidgrp.rec.hndtyp', 'hndtyp')"
:code="codes.voHndtyp"
>
</c-select>
</el-form-item>
......@@ -166,7 +166,7 @@
v-model="model.gidgrp.rec.gartyp"
style="width: 100%"
placeholder="请选择保函种类"
:code="getValues('gidgrp.rec.gartyp','typgar')"
:code="codes.gartyp"
>
</c-select>
</el-form-item>
......
......@@ -299,6 +299,7 @@ export default {
},
created () {
this.initModelData()
this.queryHndtypCodeTableList()
},
mounted () {},
};
......
......@@ -7684,7 +7684,38 @@ const CodeTable = {
{ label: "对方是境外联署机构,即双方有共同母公司,但相互持有表决权<10%或相互不持有表决权", value: "3" },
{ label: "对方与本机构/被代理居民机构/委托人吴关联关系、关系未知,或两机构均处于中国境内", value: "4" },
],
gartyp: [
{ label: "BID BOND(TENDOR GUARANTEE)投标保函", value: "A" },
{ label: "PERFORMANCE GUARANTEE(PERFORMANCE BOND)履约保函", value: "B" },
{ label: "ADVANCE PAYMENT GUARANTEE预付款保函", value: "C" },
{ label: "QUALITY GUARANTEE质量保函", value: "D" },
{ label: "RETENTION MONEY GUARANTEE预留金保函", value: "E" },
{ label: "DUTY-FREE GUARANTEE海关免税保函", value: "F" },
{ label: "LOAN GUARANTEE借款保函", value: "G" },
{ label: "OVERDRAWN GUARANTEE(OVER-DRAFT FACILITY GARANTEE)透支保函", value: "H" },
{ label: "BAIL BOND保释金保函", value: "I" },
{ label: "PAYMENT GUARANTEE付款保函", value: "J" },
{ label: "DEFERRED PAYMENT GUARANTEE延期付款保函", value: "K" },
{ label: "GUARANTEE FOR COMPENSATION TRADE补偿贸易保函", value: "L" },
{ label: "GUARANTEE FOR PROCESSING来料加工保函", value: "M" },
{ label: "LEASING GUARANTEE租赁保函", value: "N" },
{ label: "票据保付保函", value: "O" },
{ label: "PAYMENT GUARANTEE FOR COMMISSION OR ANY OTHER CHARGES费用保付保函", value: "P" },
{ label: "CREDIT CERTIFICATE资信证明", value: "Q" },
{ label: "QUALITY MAINTENANCE质量维修保函", value: "R" },
{ label: "有价证券发行担保", value: "S" },
{ label: "银行授信额度保函", value: "T" },
{ label: "银关保函", value: "U" },
{ label: "银行信贷证明", value: "V" },
{ label: "其他融资类保函", value: "W" },
{ label: "加贸保函", value: "X" },
{ label: "备用信用证", value: "Y" },
{ label: "OTHERS其他保函", value: "Z" },
],
purpos: [
{ label: "ISSU Issuance of undertaking", value: "ISSU" },
{ label: "ISCO Issuance of counter-undertaking", value: "ISCO" },
{ label: "ICCO Issuance of counter-counter-undert", value: "ICCO" },
]
}
export default CodeTable;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment