Commit 5ba3218b by Wuyuqiu

bftset交易bug修改临时提交

parent 0d530bbd
......@@ -664,7 +664,6 @@ export default {
},
set(val) {
this.model.advdisflg = val ? "X" : "";
this.model.trnmod.trndoc.addstr750 = "";
},
},
},
......
......@@ -448,6 +448,7 @@
v-model="model.setmod.redamt"
placeholder="请输入扣减金额"
:disabled="frepayflg"
@change="selectOrCheckboxChangeExecuteRule('setmod.redamt')"
></c-input>
</el-form-item>
</c-col>
......@@ -880,10 +881,11 @@ export default {
},
frepayflg: {
get() {
return this.model.bfdgrp.rec.frepayflg === "O";
return this.model.bfdgrp.rec.frepayflg === "X";
},
set(val) {
this.model.bfdgrp.rec.frepayflg = val ? "C" : "O";
this.model.bfdgrp.rec.frepayflg = val ? "X" : "";
this.model.setmod.redamt = "";
},
},
flag() {
......@@ -910,6 +912,10 @@ export default {
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
}else{
// this.model.setmod.docamt = "";
// this.model.setmod.setamt = "";
// this.model.aamset.utlamt = "";
}
},
},
......
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