Commit b2a5ade4 by WuBing

letopn金额浮动问题修改

parent 2153e8bf
...@@ -131,9 +131,10 @@ ...@@ -131,9 +131,10 @@
v-model.number="model.ledgrp.rec.nomtop" v-model.number="model.ledgrp.rec.nomtop"
maxlength="2" maxlength="2"
style="width: 100%" style="width: 100%"
placeholder="请输入上浮比例" placeholder="0"
@change="nomtopChange"
@keyup.enter.native="$event.target.blur()" @keyup.enter.native="$event.target.blur()"
class="m-input-currency"
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
...@@ -143,9 +144,9 @@ ...@@ -143,9 +144,9 @@
v-model.number="model.ledgrp.rec.nomton" v-model.number="model.ledgrp.rec.nomton"
maxlength="2" maxlength="2"
style="width: 100%" style="width: 100%"
placeholder="请输入下浮比例" placeholder="0"
@keyup.enter.native="$event.target.blur()" @keyup.enter.native="$event.target.blur()"
class="m-input-currency"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -450,6 +451,13 @@ export default { ...@@ -450,6 +451,13 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
nomtopChange(){
this.executeDefault("ledgrp.cbs.max.amt").then((res) => {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
},
apprulChange(v) { apprulChange(v) {
if (v !== "OTHR") { if (v !== "OTHR") {
this.model.ledgrp.rec.apprultxt = ""; this.model.ledgrp.rec.apprultxt = "";
......
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