Commit 0bec1101 by huangshunlin

修复等值人民币汇出f36赋值、删除Uetr(121)栏位

parent 5ca2d628
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- SG000818 : Uetr --> <!-- SG000818 : Uetr -->
<c-col :span="24" v-if="model.cpdgrp.rec.swftyp!='OTH'"> <!-- <c-col :span="24" v-if="model.cpdgrp.rec.swftyp!='OTH'">
<el-form-item label="Uetr(121)" prop="cpdgrp.rec.uetr"> <el-form-item label="Uetr(121)" prop="cpdgrp.rec.uetr">
<c-fullbox> <c-fullbox>
<c-input disabled v-model="model.cpdgrp.rec.uetr" maxlength="40" placeholder="请输入Uetr"></c-input> <c-input disabled v-model="model.cpdgrp.rec.uetr" maxlength="40" placeholder="请输入Uetr"></c-input>
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
</template> </template>
</c-fullbox> </c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="解付日期" prop="cpdgrp.rec.paydat"> <el-form-item label="解付日期" prop="cpdgrp.rec.paydat">
......
...@@ -285,10 +285,11 @@ export default { ...@@ -285,10 +285,11 @@ export default {
let res = await Api.post(`/${this.moduleRouter()}/cptopn/calAmt`, this.model); let res = await Api.post(`/${this.moduleRouter()}/cptopn/calAmt`, this.model);
loading.close(); loading.close();
if (res.respCode === SUCCESS) { if (res.respCode === SUCCESS) {
console.log("计算金额为:"+res.data); console.log("计算金额为:"+res.data.amt);
if(this.model.calflg == "Y"){ if(this.model.calflg == "Y"){
this.model.cpdgrp.cbs.nom1.amt = res.data; this.model.cpdgrp.cbs.nom1.amt = res.data.amt;
this.model.cpdgrp.cbs.max.amt = res.data; this.model.cpdgrp.cbs.max.amt = res.data.amt;
this.model.cpdgrp.rec.f36 = res.data.f36;
if(this.model.cpdgrp.cbs.nom1.amt != '' && this.model.cpdgrp.cbs.nom1.amt != 0){ if(this.model.cpdgrp.cbs.nom1.amt != '' && this.model.cpdgrp.cbs.nom1.amt != 0){
this.buildSetmod(); this.buildSetmod();
} }
......
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