From 5766581afb1304642df5a46dafbb7dfc9caa047d Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Mon, 11 Sep 2023 11:16:55 +0800 Subject: [PATCH] update merchantId --- .../src/views/pile/merchant/components/adapayMember.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jsowell-ui/src/views/pile/merchant/components/adapayMember.vue b/jsowell-ui/src/views/pile/merchant/components/adapayMember.vue index dc13c2404..e3e3496c5 100644 --- a/jsowell-ui/src/views/pile/merchant/components/adapayMember.vue +++ b/jsowell-ui/src/views/pile/merchant/components/adapayMember.vue @@ -812,6 +812,7 @@ export default { }, showAccountList: false, dialog: false, + merchantId: null, adapayCorpMember: { bankAcctType: "1", merchantId: this.$route.params.id, @@ -1336,7 +1337,7 @@ export default { this.adapayCorpMember.socialCreditCodeExpires = this.updateSocialCreditCode; console.log(this.adapayCorpMember, "this.adapayCorpMember"); - // this.adapayCorpMember.merchantId = this.merchantId; + this.adapayCorpMember.merchantId = this.merchantId; console.log("修改成功", form); this.$refs[form].validate((valid) => { if (valid) { @@ -1424,7 +1425,7 @@ export default { ); this.adapayCorpMember.socialCreditCodeExpires = this.dataValue; this.adapayCorpMember.legalCertIdExpires = this.addLegalCertIdDate; - // this.adapayCorpMember.merchantId = this.$route.params.id; + this.adapayCorpMember.merchantId = this.merchantId; this.$refs[adapayCorpMember].validate((valid) => { console.log(this.adapayCorpMember, "this.adapayCorpMember"); if (valid) { @@ -1521,6 +1522,7 @@ export default { this.selectAdapayMember(); this.jsonHttp(); this.bankList = text.bankList; + this.merchantId = this.$route.params.id; }, };