Commit e47c1a1f by lianyang

letopn/not/drw/dav/can/ame/amc回车触发默认事件改为触发失焦点触发的事件

parent 5e29a1f1
...@@ -18,6 +18,7 @@ export default { ...@@ -18,6 +18,7 @@ export default {
this.$notify.error({title: '错误',message: '服务请求失败!'}); this.$notify.error({title: '错误',message: '服务请求失败!'});
} }
}, },
onSeainf(){},
async onBenpDet(){ async onBenpDet(){
let rtnmsg = await this.executeRule("benp.det") let rtnmsg = await this.executeRule("benp.det")
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
......
...@@ -495,7 +495,7 @@ export default { ...@@ -495,7 +495,7 @@ export default {
// {max: 3,message:"长度不能超过3"} // {max: 3,message:"长度不能超过3"}
], ],
"ledgrp.cbs.nom1.amt": [ "ledgrp.cbs.nom1.amt": [
{ required: true, message: "必输项" }, { type: 'string', required: true, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" }, { max: 18, message: "整数位不能超过14位" },
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } { pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
......
...@@ -12,8 +12,7 @@ ...@@ -12,8 +12,7 @@
<c-col :span="11"> <c-col :span="11">
<el-form-item label="" label-width="5px" prop="ledgrp.cbs.max2.amt"> <el-form-item label="" label-width="5px" prop="ledgrp.cbs.max2.amt">
<c-input v-model="model.ledgrp.cbs.max2.amt" placeholder="请输入Additional Amount" <c-input v-model="model.ledgrp.cbs.max2.amt" placeholder="请输入Additional Amount"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"></c-input>
defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
...@@ -207,7 +207,7 @@ ...@@ -207,7 +207,7 @@
maxlength="3" maxlength="3"
placeholder="请输入Confirmation" placeholder="请输入Confirmation"
:code="codes.curtxt1" :code="codes.curtxt1"
@keyup.enter.native="cnfCurEvent" style="width:100%" style="width:100%"
disabled disabled
></c-select> ></c-select>
</el-form-item> </el-form-item>
...@@ -218,7 +218,7 @@ ...@@ -218,7 +218,7 @@
v-model="model.ledgrp.cbs.cnf.amt" v-model="model.ledgrp.cbs.cnf.amt"
class="m-input-currency" class="m-input-currency"
placeholder="请输入Balance" placeholder="请输入Balance"
@keyup.enter.native="defaultFunction('ledgrp.cbs.cnf.amt', model.ledgrp.cbs.cnf.amt)" @keyup.enter.native="$event.target.blur()"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
<c-input <c-input
v-model="model.ledgrp.rec.partcon" v-model="model.ledgrp.rec.partcon"
placeholder="请输入Partial Confirmation" placeholder="请输入Partial Confirmation"
@keyup.enter.native="defaultFunction('ledgrp.rec.partcon', model.ledgrp.rec.partcon)" @keyup.enter.native="$event.target.blur()"
></c-input> ></c-input>
<!-- <span>%</span> --> <!-- <span>%</span> -->
<template slot="footer">%</template> <template slot="footer">%</template>
...@@ -385,13 +385,6 @@ export default { ...@@ -385,13 +385,6 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
cnfCurEvent() {
this.executeDefault("didgrp.cbs.cnf.cur").then((res) => {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
},
}, },
created: function () {}, created: function () {},
} }
......
...@@ -57,16 +57,15 @@ ...@@ -57,16 +57,15 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Nominal Amount" prop="ledgrp.cbs.nom1.cur"> <el-form-item label="Nominal Amount" prop="ledgrp.cbs.nom1.cur">
<c-select v-model="model.ledgrp.cbs.nom1.cur" style="width: 100%" placeholder="请选择币种" <c-select v-model="model.ledgrp.cbs.nom1.cur" style="width: 100%" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent" :code="codes.curtxt1"> :code="codes.curtxt1">
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="7"> <c-col :span="7">
<el-form-item label="" label-width="5px" prop="ledgrp.cbs.nom1.amt"> <el-form-item label="" label-width="5px" prop="ledgrp.cbs.nom1.amt">
<c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 95%" <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 95%"
placeholder="请输入Nominal Amount" @keyup.enter.native=" placeholder="请输入Nominal Amount" @keyup.enter.native="$event.target.blur()" ></c-input-currency>
defaultFunction('ledgrp.cbs.nom1.amt', model.ledgrp.cbs.nom1.amt) <!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
" ></c-input-currency>
<!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%" <!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%"
placeholder="请输入Nominal Amount"></c-input-currency> --> placeholder="请输入Nominal Amount"></c-input-currency> -->
</el-form-item> </el-form-item>
...@@ -690,13 +689,6 @@ export default { ...@@ -690,13 +689,6 @@ export default {
}, },
}, },
methods: { ...Event, methods: { ...Event,
nom1CurEvent() {
this.executeDefault("ledgrp.cbs.nom1.cur").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 = "";
......
...@@ -20,9 +20,7 @@ ...@@ -20,9 +20,7 @@
placeholder="请输入Additional Amount" placeholder="请输入Additional Amount"
class="m-input-currency" class="m-input-currency"
disabled disabled
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)
"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
...@@ -368,12 +368,7 @@ ...@@ -368,12 +368,7 @@
placeholder="请输入" placeholder="请输入"
:disabled="model.ledgrp.rec.avbby == 'P'" :disabled="model.ledgrp.rec.avbby == 'P'"
maxlength="4" maxlength="4"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.rec.tenmaxday',
model.ledgrp.rec.tenmaxday
)
"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Nominal Amount" prop="ledgrp.cbs.nom1.cur"> <el-form-item label="Nominal Amount" prop="ledgrp.cbs.nom1.cur">
<c-select v-model="model.ledgrp.cbs.nom1.cur" style="width: 100%" placeholder="请选择币种" <c-select v-model="model.ledgrp.cbs.nom1.cur" style="width: 100%" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent" :code="codes.curtxt1" :code="codes.curtxt1"
disabled> disabled>
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -108,10 +108,9 @@ ...@@ -108,10 +108,9 @@
<c-col :span="7"> <c-col :span="7">
<el-form-item label="" label-width="5px" prop="ledgrp.cbs.nom1.amt"> <el-form-item label="" label-width="5px" prop="ledgrp.cbs.nom1.amt">
<c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 95%" <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 95%"
placeholder="请输入Nominal Amount" @keyup.enter.native=" placeholder="请输入Nominal Amount" @keyup.enter.native="$event.target.blur()"
defaultFunction('ledgrp.cbs.nom1.amt', model.ledgrp.cbs.nom1.amt)
"
disabled></c-input-currency> disabled></c-input-currency>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
<!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%" <!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%"
placeholder="请输入Nominal Amount"></c-input-currency> --> placeholder="请输入Nominal Amount"></c-input-currency> -->
</el-form-item> </el-form-item>
...@@ -408,13 +407,6 @@ export default { ...@@ -408,13 +407,6 @@ export default {
...Event, ...Event,
onSeainf(){}, onSeainf(){},
onExtkey(){}, onExtkey(){},
nom1CurEvent() {
this.executeDefault('ledgrp.cbs.nom1.cur').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 = "";
......
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
v-model="model.ledgrp.cbs.nom1.cur" v-model="model.ledgrp.cbs.nom1.cur"
style="width: 100%" style="width: 100%"
placeholder="请选择币种" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent"
:code="codes.curtxt1" :code="codes.curtxt1"
disabled disabled
> >
...@@ -54,14 +53,10 @@ ...@@ -54,14 +53,10 @@
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
class="m-input-currency" class="m-input-currency"
placeholder="请输入信用证金额" placeholder="请输入信用证金额"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.cbs.nom1.amt',
model.ledgrp.cbs.nom1.amt
)
"
disabled disabled
></c-input-currency> ></c-input-currency>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -606,13 +601,6 @@ export default { ...@@ -606,13 +601,6 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
nom1CurEvent() {
this.executeDefault('ledgrp.cbs.nom1.cur').then((res) => {
if (res.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, res.data)
}
})
},
}, },
created: function () {}, created: function () {},
} }
......
...@@ -67,7 +67,6 @@ ...@@ -67,7 +67,6 @@
v-model="model.ledgrp.cbs.nom1.cur" v-model="model.ledgrp.cbs.nom1.cur"
style="width: 100%" style="width: 100%"
placeholder="请选择币种" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent"
:code="codes.cur" :code="codes.cur"
disabled disabled
> >
...@@ -81,15 +80,11 @@ ...@@ -81,15 +80,11 @@
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
class="m-input-currency" class="m-input-currency"
placeholder="请输入信用证金额" placeholder="请输入信用证金额"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.cbs.nom1.amt',
model.ledgrp.cbs.nom1.amt
)
"
disabled disabled
></c-input-currency> ></c-input-currency>
</el-form-item> <!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item>
</c-col> </c-col>
<c-col :span="5"> <c-col :span="5">
......
...@@ -18,11 +18,10 @@ ...@@ -18,11 +18,10 @@
<c-input <c-input
v-model="model.ledgrp.cbs.max2.amt" v-model="model.ledgrp.cbs.max2.amt"
placeholder="请输入Additional Amount" placeholder="请输入Additional Amount"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)
"
></c-input> ></c-input>
</el-form-item> <!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
......
...@@ -361,13 +361,9 @@ ...@@ -361,13 +361,9 @@
placeholder="请输入" placeholder="请输入"
:disabled="model.ledgrp.rec.avbby == 'P'" :disabled="model.ledgrp.rec.avbby == 'P'"
maxlength="4" maxlength="4"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.rec.tenmaxday',
model.ledgrp.rec.tenmaxday
)
"
></c-input> ></c-input>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
......
...@@ -37,7 +37,6 @@ ...@@ -37,7 +37,6 @@
v-model="model.ledgrp.cbs.nom1.cur" v-model="model.ledgrp.cbs.nom1.cur"
style="width: 100%" style="width: 100%"
placeholder="请选择币种" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent"
:code="codes.curtxt1" :code="codes.curtxt1"
disabled disabled
> >
...@@ -51,14 +50,10 @@ ...@@ -51,14 +50,10 @@
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
class="m-input-currency" class="m-input-currency"
placeholder="请输入信用证金额" placeholder="请输入信用证金额"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.cbs.nom1.amt',
model.ledgrp.cbs.nom1.amt
)
"
disabled disabled
></c-input-currency> ></c-input-currency>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -629,13 +624,6 @@ export default { ...@@ -629,13 +624,6 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
nom1CurEvent() {
this.executeDefault('ledgrp.cbs.nom1.cur').then((res) => {
if (res.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, res.data)
}
})
},
}, },
created: function () {}, created: function () {},
} }
......
...@@ -121,7 +121,6 @@ ...@@ -121,7 +121,6 @@
v-model="model.ledgrp.cbs.nom1.cur" v-model="model.ledgrp.cbs.nom1.cur"
style="width: 100%" style="width: 100%"
placeholder="请选择币种" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent"
:code="codes.curtxt1" :code="codes.curtxt1"
> >
</c-select> </c-select>
...@@ -139,12 +138,7 @@ ...@@ -139,12 +138,7 @@
v-model="model.ledgrp.cbs.nom1.amt" v-model="model.ledgrp.cbs.nom1.amt"
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
placeholder="请输入信用证金额" placeholder="请输入信用证金额"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.cbs.nom1.amt',
model.ledgrp.cbs.nom1.amt
)
"
></c-input-currency> ></c-input-currency>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -1108,13 +1102,6 @@ export default { ...@@ -1108,13 +1102,6 @@ export default {
...Event, ...Event,
onSeainf(){}, onSeainf(){},
onExtkey(){}, onExtkey(){},
nom1CurEvent() {
this.executeDefault('ledgrp.cbs.nom1.cur').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 = ''
......
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
<c-col :span="11"> <c-col :span="11">
<el-form-item label="" label-width="5px" prop="ledgrp.cbs.max2.amt"> <el-form-item label="" label-width="5px" prop="ledgrp.cbs.max2.amt">
<c-input v-model="model.ledgrp.cbs.max2.amt" placeholder="请输入Additional Amount" <c-input v-model="model.ledgrp.cbs.max2.amt" placeholder="请输入Additional Amount"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"></c-input>
defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)"></c-input> <!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
......
...@@ -362,13 +362,9 @@ ...@@ -362,13 +362,9 @@
placeholder="请输入" placeholder="请输入"
:disabled="model.ledgrp.rec.avbby == 'P'" :disabled="model.ledgrp.rec.avbby == 'P'"
maxlength="4" maxlength="4"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.rec.tenmaxday',
model.ledgrp.rec.tenmaxday
)
"
></c-input> ></c-input>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
......
...@@ -121,7 +121,6 @@ ...@@ -121,7 +121,6 @@
v-model="model.ledgrp.cbs.nom1.cur" v-model="model.ledgrp.cbs.nom1.cur"
style="width: 100%" style="width: 100%"
placeholder="请选择币种" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent"
:code="codes.curtxt1" :code="codes.curtxt1"
> >
</c-select> </c-select>
...@@ -133,13 +132,9 @@ ...@@ -133,13 +132,9 @@
v-model="model.ledgrp.cbs.nom1.amt" v-model="model.ledgrp.cbs.nom1.amt"
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
placeholder="请输入信用证金额" placeholder="请输入信用证金额"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.cbs.nom1.amt',
model.ledgrp.cbs.nom1.amt
)
"
></c-input-currency> ></c-input-currency>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
<!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%" <!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%"
placeholder="请输入信用证金额"></c-input-currency> --> placeholder="请输入信用证金额"></c-input-currency> -->
</el-form-item> </el-form-item>
...@@ -495,13 +490,6 @@ export default { ...@@ -495,13 +490,6 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
nom1CurEvent() {
this.executeDefault('ledgrp.cbs.nom1.cur').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 = ''
......
...@@ -18,11 +18,10 @@ ...@@ -18,11 +18,10 @@
<c-input <c-input
v-model="model.ledgrp.cbs.max2.amt" v-model="model.ledgrp.cbs.max2.amt"
placeholder="请输入Additional Amount" placeholder="请输入Additional Amount"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)
"
></c-input> ></c-input>
</el-form-item> <!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item>
</c-col> </c-col>
<c-col :span="13"> <c-col :span="13">
......
...@@ -362,13 +362,9 @@ ...@@ -362,13 +362,9 @@
placeholder="请输入" placeholder="请输入"
:disabled="model.ledgrp.rec.avbby == 'P'" :disabled="model.ledgrp.rec.avbby == 'P'"
maxlength="4" maxlength="4"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.rec.tenmaxday',
model.ledgrp.rec.tenmaxday
)
"
></c-input> ></c-input>
<!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
......
...@@ -121,7 +121,6 @@ ...@@ -121,7 +121,6 @@
v-model="model.ledgrp.cbs.nom1.cur" v-model="model.ledgrp.cbs.nom1.cur"
style="width: 100%" style="width: 100%"
placeholder="请选择币种" placeholder="请选择币种"
@keyup.enter.native="nom1CurEvent"
:code="codes.curtxt1" :code="codes.curtxt1"
> >
</c-select> </c-select>
...@@ -133,12 +132,7 @@ ...@@ -133,12 +132,7 @@
v-model="model.ledgrp.cbs.nom1.amt" v-model="model.ledgrp.cbs.nom1.amt"
style="text-align: left; width: 100%" style="text-align: left; width: 100%"
placeholder="请输入信用证金额" placeholder="请输入信用证金额"
@keyup.enter.native=" @keyup.enter.native="$event.target.blur()"
defaultFunction(
'ledgrp.cbs.nom1.amt',
model.ledgrp.cbs.nom1.amt
)
"
></c-input-currency> ></c-input-currency>
<!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%" <!-- <c-input-currency v-model="model.ledgrp.cbs.nom1.amt" style="text-align: left; width: 100%"
placeholder="请输入信用证金额"></c-input-currency> --> placeholder="请输入信用证金额"></c-input-currency> -->
...@@ -469,13 +463,6 @@ export default { ...@@ -469,13 +463,6 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
nom1CurEvent() {
this.executeDefault("ledgrp.cbs.nom1.cur").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