Commit b412f196 by liyixun

cctset点击free of payment 数据不显示问题

parent 9c6af345
...@@ -9,6 +9,8 @@ export default class Bttset { ...@@ -9,6 +9,8 @@ export default class Bttset {
bttpayl1blk:"", bttpayl1blk:"",
bttprbl1blk:"", bttprbl1blk:"",
lendoc_botsetl1blk:"", lendoc_botsetl1blk:"",
bopmod_dbap_bopgatl1blk:"",
bopmod_dbdp_bopimpl1blk:"",
setmod: new Pub().data.Setmod, setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut, mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod, trnmod: new Pub().data.Trnmod,
......
...@@ -12,11 +12,7 @@ ...@@ -12,11 +12,7 @@
disabled disabled
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button <c-button size="small" type="primary" disabled>
size="small"
type="primary"
disabled
>
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
</template> </template>
...@@ -275,6 +271,7 @@ ...@@ -275,6 +271,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="" prop="ccdgrp.rec.frepayflg"> <el-form-item label="" prop="ccdgrp.rec.frepayflg">
<c-checkbox v-model="model.ccdgrp.rec.frepayflg" <c-checkbox v-model="model.ccdgrp.rec.frepayflg"
@click="frepayFlagChange"
>Free of Payment</c-checkbox >Free of Payment</c-checkbox
> >
</el-form-item> </el-form-item>
...@@ -309,7 +306,6 @@ ...@@ -309,7 +306,6 @@
v-model="model.setmod.redamt" v-model="model.setmod.redamt"
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
placeholder="请输入Reduction Amt" placeholder="请输入Reduction Amt"
@change="change"
></c-input-currency> ></c-input-currency>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -495,11 +491,18 @@ export default { ...@@ -495,11 +491,18 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
async change() { // async change() {
if (this.model.ccdgrp.rec.frepayflg === "X") { // if (this.model.ccdgrp.rec.frepayflg === "X") {
this.model.setmod.redamt = this.model.setmod.docamt; // this.model.setmod.redamt = this.model.setmod.docamt;
} else { // } else {
this.model.setmod.redamt = "0.00"; // this.model.setmod.redamt = "0.00";
// }
// },
async frepayFlagChange(){
let rtnmsg = await this.executeDefault("setmod.redamt");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
} }
}, },
......
...@@ -474,14 +474,15 @@ ...@@ -474,14 +474,15 @@
label="InDirect Swift Add" label="InDirect Swift Add"
prop="gitp.indirectswiadd" prop="gitp.indirectswiadd"
> >
<c-input <c-input-xml
rows="4px"
type="textarea" type="textarea"
v-model="model.gitp.indirectswiadd" :maxRows="10"
maxlength="65" :model="model.gitp.indirectswiadd"
@change="selectOrCheckboxRule('gitp.indirectswiadd')"
maxlength="9750"
show-word-limit show-word-limit
placeholder="请输入InDirect Swift Add" placeholder="请输入InDirect Swift Add"
></c-input> ></c-input-xml>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
......
...@@ -5,19 +5,33 @@ ...@@ -5,19 +5,33 @@
<c-col :span="16"> <c-col :span="16">
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item
v-if="model.gitp.gidtxtmodflg == ''"
label="Guarantee Text with Variables" label="Guarantee Text with Variables"
prop="gidgrp.blk.gidtxt" prop="gidgrp.blk.gidtxt"
> >
<i-stream-input <c-input-xml
:disabled="model.gitp.gidtxtmodflg == ''" disabled
type="textarea" resize="none"
rows="15" :maxRows="10"
:model="model.gidgrp.blk.gidtxt" :model="model.gidgrp.blk.gidtxt"
maxlength="32500" maxlength="32500"
show-word-limit show-word-limit
placeholder="请输入Guarantee Text with Variables" placeholder="请输入Guarantee Text with Variables"
></i-stream-input> ></c-input-xml>
<!-- <c-input :disabled="model.gitp.gidtxtmodflg == ''" type="textarea" rows="15" v-model="model.gidgrp.blk.gidtxt" maxlength="65" show-word-limit placeholder="请输入Guarantee Text with Variables" ></c-input> --> </el-form-item>
<el-form-item
v-if="model.gitp.gidtxtmodflg == 'X'"
label="Guarantee Text with Variables"
prop="gidgrp.blk.gtxgidtxt"
>
<c-input-xml
type="textarea"
:model="model.gidgrp.blk.gtxgidtxt"
:maxRows="10"
maxlength="32500"
show-word-limit
placeholder="请输入Guarantee Text with Variables"
></c-input-xml>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
......
...@@ -5,18 +5,33 @@ ...@@ -5,18 +5,33 @@
<c-col :span="16"> <c-col :span="16">
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item
v-if="model.gitp.gidtxtmodflgc == ''"
label="Guarantee Text with Variables" label="Guarantee Text with Variables"
prop="gidgrp.blk.gtxgidtxt" prop="gidgrp.blk.gtxgidtxt"
> >
<c-input <c-input-xml
:disabled="model.gitp.gidtxtmodflgc == ''" :disabled="model.gitp.gidtxtmodflgc == ''"
type="textarea" type="textarea"
rows="15" rows="15"
v-model="model.gidgrp.blk.gtxgidtxtc" :model="model.gidgrp.blk.gtxgidtxtc"
maxlength="32500" maxlength="65"
show-word-limit show-word-limit
placeholder="请输入Guarantee Text with Variables" placeholder="请输入Guarantee Text with Variables"
></c-input> ></c-input-xml>
</el-form-item>
<el-form-item
v-if="model.gitp.gidtxtmodflgc == 'X'"
label="Guarantee Text with Variables - Counter Undertaking"
prop="gidgrp.blk.gtxgidtxtc"
>
<c-input-xml
type="textarea"
:modle="model.gidgrp.blk.gtxgidtxtc"
rows="15"
maxlength="65"
show-word-limit
placeholder="请输入Guarantee Text with Variables - Counter Undertaking"
></c-input-xml>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
......
...@@ -397,7 +397,7 @@ ...@@ -397,7 +397,7 @@
placeholder="请选择Applicable Rules" placeholder="请选择Applicable Rules"
> >
<el-option <el-option
v-for="item in codes.apprul" v-for="item in codes.apprulc1"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
......
...@@ -178,9 +178,10 @@ ...@@ -178,9 +178,10 @@
<el-form-item <el-form-item
label="Presentation Instr." label="Presentation Instr."
prop="gidgrp.blk.preper" prop="gidgrp.blk.preper"
v-if="model.gitp.prepermodflg==''"
> >
<c-input <c-input
:disabled="model.gitp.prepermodflg == ''" disabled
type="textarea" type="textarea"
:rows="5" :rows="5"
v-model="model.gidgrp.blk.preper" v-model="model.gidgrp.blk.preper"
...@@ -189,6 +190,20 @@ ...@@ -189,6 +190,20 @@
placeholder="请输入Presentation Instr." placeholder="请输入Presentation Instr."
></c-input> ></c-input>
</el-form-item> </el-form-item>
<el-form-item
label="Presentation Instr."
prop="gidgrp.blk.atxpreper"
v-if="model.gitp.prepermodflg=='X'"
>
<c-input
type="textarea"
:rows="5"
v-model="model.gidgrp.blk.atxpreper"
maxlength="6500"
show-word-limit
placeholder="请输入Presentation Instr."
></c-input>
</el-form-item>
</c-col> </c-col>
<c-col :span="4"> <c-col :span="4">
<c-checkbox <c-checkbox
......
...@@ -79,9 +79,10 @@ ...@@ -79,9 +79,10 @@
<el-form-item <el-form-item
label="Presentation Instr. " label="Presentation Instr. "
prop="gidgrp.blk.preperc" prop="gidgrp.blk.preperc"
v-if="model.gitp.prepercmodflg==''"
> >
<c-input <c-input
:disabled="model.gitp.prepercmodflg == ''" disabled
rows="6" rows="6"
type="textarea" type="textarea"
v-model="model.gidgrp.blk.preperc" v-model="model.gidgrp.blk.preperc"
...@@ -90,6 +91,21 @@ ...@@ -90,6 +91,21 @@
placeholder="请输入Presentation Instr. " placeholder="请输入Presentation Instr. "
></c-input> ></c-input>
</el-form-item> </el-form-item>
<el-form-item
label="Presentation Instr. "
prop="gidgrp.blk.atxpreperc"
v-if="model.gitp.prepercmodflg=='X'"
>
<c-input
disabled
rows="6"
type="textarea"
v-model="model.gidgrp.blk.atxpreperc"
maxlength="6500"
show-word-limit
placeholder="请输入Presentation Instr. "
></c-input>
</el-form-item>
</c-col> </c-col>
<c-col :span="4"> <c-col :span="4">
<c-checkbox <c-checkbox
......
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