Commit dea7417b by Eivi

bftdcr、bftsnd交易bug修改

parent 7785aee3
......@@ -225,6 +225,7 @@ export default {
},
set(val) {
this.model.bfdgrp.blk.docdisflg = val ? "X" : "";
this.model.bfdgrp.blk.docdis = "";
},
},
......
......@@ -327,7 +327,7 @@
:list="this.model.bftp.docgrdm.docgrd || []"
:paginationShow="false"
:border="true"
@change="executeDefault('bfdgrp.blk.prsdoc')"
@click="prsdoc"
>
<el-table-column label="1st" width="auto">
<template slot-scope="scope">
......@@ -865,7 +865,18 @@ export default {
// break;
// }
// }
},//表格输入传入数据库
async prsdoc() {
let rtnmsg = await this.executeRule("bfdgrp.blk.prsdoc")
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
this.model.bfdgrp.blk.prsdoc = rtnmsg.data
} else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
},
},
created: function () {},
};
......
......@@ -176,6 +176,7 @@
style="margin-left: 10px; padding: 0 10px"
size="small"
type="primary"
disabled
>
...
</c-button>
......
......@@ -348,13 +348,15 @@
</c-col>
<c-col :span="24">
<c-col :span="12" style="margin-left: 150px">
<c-col :span="12">
<el-form-item label="" prop="letp.aamp.aammod.addamtflg">
<c-checkbox :disabled="true" v-model="model.ledgrp.rec.collflg"
>Collateralized L/C</c-checkbox
>
</el-form-item>
</c-col>
<c-col :span="12" style="margin-right: -150px">
<c-col :span="12">
<el-form-item label="" prop="letp.aamp.aammod.addamtflg">
<c-checkbox v-model="model.letp.aamp.aammod.addamtflg">Add. Amount</c-checkbox>
</el-form-item>
......@@ -362,11 +364,14 @@
</c-col>
<c-col :span="24">
<c-col :span="12" style="margin-left: 150px">
<c-col :span="12">
<el-form-item label="" prop="ledgrp.rec.inctrf">
<c-checkbox v-model="model.ledgrp.rec.inctrf" disabled>Incoming Transfer</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="12" style="margin-right: -150px">
<c-col :span="12">
<el-form-item label="" prop="ledgrp.rec.resflg">
<c-checkbox v-model="resflg">Reserved Contract</c-checkbox>
</el-form-item>
......@@ -521,14 +526,14 @@ export default {
this.model.ledgrp.rec.nonban = val ? "X" : "";
},
},
teskeyunc:{
teskeyunc: {
get() {
return this.model.ledgrp.rec.teskeyunc != "";
},
set(val) {
this.model.ledgrp.rec.teskeyunc = val ? "X" : "";
},
}
},
},
methods: {
...Event,
......
......@@ -39,6 +39,7 @@
style="width: 100%"
placeholder="Please select Confirm. Instruct. to 2nd Adv. Bank"
:code="codes.cnfins"
disabled
>
</c-select>
</el-form-item>
......
......@@ -19,6 +19,7 @@
style="margin-left: 10px; padding: 0 10px"
size="small"
type="primary"
disabled
>
...
</c-button>
......
......@@ -19,6 +19,7 @@
style="margin-left: 10px; padding: 0 10px"
size="small"
type="primary"
disabled
>
...
</c-button>
......
......@@ -77,7 +77,7 @@
</el-tab-pane>
<!--PD000546 -->
<el-tab-pane label="Attachments" name="doctre">
<el-tab-pane label="Attachments" name="doctre" v-if="attachments">
<m-doctre :model="model" :codes="codes"/>
</el-tab-pane>
......@@ -162,11 +162,15 @@ export default {
codes: {
...CodeTable
},
attachments: false
}
},
methods:{
myTabClick(tab){
this.tabClick(tab)
if(tab.name === 'setpan') {
this.attachments = true
}
/**
* do it yourself
**/
......
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