Commit 7bd3f106 by 吴佳

2022.01.15 wujia =换成==

parent a2711571
......@@ -175,7 +175,7 @@ export default {
*/
showGridPromptDialog(rulePath, columns, shadow, modelUrl, isCover = "T",Dialog='etyDialog') {
this.executeRule(rulePath).then((res) => {
if (res.respCode = SUCCESS) {
if (res.respCode == SUCCESS) {
if (res.data.params) {
Utils.copyValueFromVO(this.model, res.data);
} else {
......@@ -204,7 +204,7 @@ export default {
obj[props] = val;
Utils.copyValueFromVO(this.model, obj);
this.executeRule(rulePath).then((res) => {
if (res.respCode = SUCCESS) {
if (res.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -105,7 +105,7 @@ export default {
const selDst = "trncorco.trnstm" //列表对应后台模型中的stream
let params = { selDst, selIds };
this.executeRule("dsp,reldsp",params).then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
sessionStorage.setItem('InftrnpsDetail', JSON.stringify(this.model));
// this.$router.push({ path: "business/inftrnpsDetail", query: { idx: idx}});
......@@ -120,7 +120,7 @@ export default {
const selDst = "trncorco.trnstm" //列表对应后台模型中的stream
let params = { selDst, selIds };
this.executeRule("dsp,reldsp",params).then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
sessionStorage.setItem('InftrnpsDetail', JSON.stringify(this.model));
// this.$router.push({ path: "business/inftrnpsDetail", query: { idx: idx}});
......
......@@ -492,7 +492,7 @@ export default {
...Event,
opn1CurEvent() {
this.executeDefault("didgrp.cbs.opn1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -745,14 +745,14 @@ export default {
methods: { ...Event,
docprbrolChange(){
this.executeRule("bddgrp.rec.docprbrol").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
},
commonExecuteRule(ruleName){
this.executeRule(ruleName).then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -291,7 +291,7 @@ export default {
...Event,
nom1CurEvent() {
this.executeDefault("didgrp.cbs.opn1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -13,10 +13,9 @@
<c-col :span="24">
<el-form-item label="特殊规定" prop="litameadv">
<c-col :span="8">
<c-select
v-model="model.litameadv"
style="width: 150%"
style="width: 50%"
placeholder="请选择特殊规定"
>
<el-option
......@@ -27,7 +26,6 @@
>
</el-option>
</c-select>
</c-col>
</el-form-item>
</c-col>
......
......@@ -160,7 +160,7 @@ export default {
recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => {
if (res.respCode = SUCCESS){
if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data);
}
}
......
......@@ -157,13 +157,13 @@ export default {
methods:{...Event,
async onDefdetButtxmsel(){
let rtnmsg = await this.executeRule("txmmod.buttxmsel"); //BUTTXMSEL
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async onPreperButtxmsel(){
let rtnmsg = await this.executeRule("txmmod.buttxmsel"); //BUTTXMSEL
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
......@@ -189,7 +189,7 @@ export default {
recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => {
if (res.respCode = SUCCESS){
if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data);
}
}
......
......@@ -451,7 +451,7 @@ export default {
...Event,
async chooseBank(){
let rtnmsg = await this.executeRule("didgrp.rec.avbwth"); //DIDGRP\REC\AVBWTH
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
......
......@@ -740,7 +740,7 @@ export default {
nom1CurEvent(){
this.executeDefault("didgrp.cbs.nom1.cur").then(
(res) => {
if (res.respCode = SUCCESS){
if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data);
}
}
......
......@@ -826,7 +826,7 @@ export default {
},
nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -705,21 +705,21 @@ export default {
...Event,
didCurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
},
bddCurEvent() {
this.executeDefault("bddgrp.cbs.max.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
},
docprbrolChange(){
this.executeRule("bddgrp.rec.docprbrol").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
debugger;
Utils.copyValueFromVO(this.model, res.data);
}
......@@ -727,7 +727,7 @@ export default {
},
ptsRefEvent(){
this.executeRule("trnmod.ptsmod.wrkptspta.pts.ref").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
debugger;
Utils.copyValueFromVO(this.model, res.data);
}
......@@ -735,7 +735,7 @@ export default {
},
ptsBanknoEvent(){
this.executeRule("bddgrp.skh.pts.bankno").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
debugger;
Utils.copyValueFromVO(this.model, res.data);
}
......
......@@ -170,7 +170,7 @@ export default {
recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => {
if (res.respCode = SUCCESS){
if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data);
}
}
......
......@@ -799,7 +799,7 @@ export default {
},
nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -183,7 +183,7 @@ export default {
recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => {
if (res.respCode = SUCCESS){
if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data);
}
}
......
......@@ -779,7 +779,7 @@ export default {
},
nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub3")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
this.navcode = []
this.$emit("onChoose",code.toLowerCase());
}else{
......
......@@ -396,7 +396,7 @@ export default {
this.dialogTableVisible = true;
let rtnmsg = await this.executeDefault("infcon.chksubcon");
if ((rtnmsg.respCode = SUCCESS)) {
if ((rtnmsg.respCode == SUCCESS)) {
this.trnData.data = rtnmsg.data.infcon_trnstm.rows;
}
},
......
......@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
this.navcode = []
this.$emit("onChoose",code.toLowerCase());
}else{
......
......@@ -144,15 +144,15 @@
<c-input
v-model="model.didgrp.rec.nomtop"
maxlength="9"
style="width: 40%"
style="width: 48%"
placeholder="请输入Amount Tolerance - Positive"
disabled
></c-input>
<label style="display:inline-block;width:10%;text-align:center;">-</label>
<label style="display:inline-block;width:calc(3% - 4px);text-align:center;">-</label>
<c-input
v-model="model.didgrp.rec.nomton"
maxlength="9"
style="width: 40%"
style="width: 48%"
placeholder="请输入Amount Tolerance - Negative"
disabled
></c-input>
......@@ -820,7 +820,7 @@ export default {
},
nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
......
......@@ -40,6 +40,7 @@
size="small"
type="primary"
icon="el-icon-search"
disabled
@click="onSeainf(`${argadr.grp}.${argadr.rol}.pts.extkey`)"
>
</c-button>
......@@ -50,6 +51,7 @@
class="detailsButton"
size="small"
type="primary"
disabled
@click="onAplpDet"
>
{{ $t('buttons.details') }}
......
......@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
this.$emit("onChoose",code.toLowerCase());
}else{
......@@ -70,7 +70,7 @@ export default {
this.model.lidgrp.rec.ownref = this.ownref
console.log("ownref:" + this.ownref );
let rtnmsg = await this.executeRule("lidgrp.rec.ownref")
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
//重置数组
this.navcode.length = 0
this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
......
......@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
this.$emit("onChoose",code.toLowerCase());
}else{
......@@ -70,7 +70,7 @@ export default {
this.model.lidgrp.rec.ownref = this.ownref
console.log("ownref:" + this.ownref );
let rtnmsg = await this.executeRule("lidgrp.rec.ownref")
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
//重置数组
this.navcode.length = 0
this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
......
......@@ -34,7 +34,7 @@ export default {
this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
this.$emit("onChoose",code.toLowerCase());
}else{
......@@ -70,7 +70,7 @@ export default {
//请求按钮数据
this.model.trdgrp.rec.ownref = this.ownref
let rtnmsg = await this.executeRule("trdgrp.rec.ownref")
if(rtnmsg.respCode = SUCCESS){
if(rtnmsg.respCode == SUCCESS){
//重置数组
this.navcode.length = 0
this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
......
......@@ -405,7 +405,7 @@ export default {
this.hotreg = "1";
}
let rtnmsg = await this.executeRule(`cfgfil.hotreg${this.hotreg}`);
if ((rtnmsg.respCode = SUCCESS)) {
if ((rtnmsg.respCode == SUCCESS)) {
this.updateModel(rtnmsg.data);
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
......
......@@ -41,7 +41,7 @@ export default {
async onNarBtnClick(href, hotsubx) {
let rtnmsg = await this.executeRule(`cfgfil.hotsub${hotsubx}`);
console.log("cfgfil.code:" + this.model.cfgfil[`subtrn${hotsubx}`]);
if ((rtnmsg.respCode = SUCCESS)) {
if ((rtnmsg.respCode == SUCCESS)) {
this.$router.history.push(href);
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
......
......@@ -42,7 +42,7 @@
>
<c-input
v-model="model.liaall.limmod.limpts.wrk.pts.extkey"
:disabled="true"
disabled
maxlength="16"
placeholder="请输入External Key of Address"
style="width: 95%"
......
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