From 06f9f7789d1a68436366d5eb41d1ba2713ec0a7e Mon Sep 17 00:00:00 2001 From: zhouna Date: Wed, 25 Dec 2019 13:54:45 +0800 Subject: [PATCH 1/2] =?UTF-8?q?[]FIX]=E4=BB=A3=E7=A0=81=E5=86=B2=E7=AA=81?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/AccountInformation.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/ebiz/sale/AccountInformation.vue b/src/views/ebiz/sale/AccountInformation.vue index 14e1d9005..bb917b0b7 100644 --- a/src/views/ebiz/sale/AccountInformation.vue +++ b/src/views/ebiz/sale/AccountInformation.vue @@ -299,7 +299,7 @@ export default { cardBookType: '1', cardBookCode: that.bankId, isAutoPay: '0', - isAutoRenewal: this.isAutoRenewal == '0' ? '1' : '' + isAutoRenewal: this.isRenew == '0' ? '1' : '' } } } @@ -343,7 +343,7 @@ export default { cardBookType: '1', cardBookCode: that.bankId, isAutoPay: this.isAutoPay == '0' ? '1' : '', - isAutoRenewal: this.isAutoRenewal == '0' ? '1' : '' + isAutoRenewal: this.isRenew == '0' ? '1' : '' } } } From a17b9872e69de3ea0d6577cb3e93ff21e2fc1b73 Mon Sep 17 00:00:00 2001 From: zhouna Date: Wed, 25 Dec 2019 16:37:00 +0800 Subject: [PATCH 2/2] =?UTF-8?q?[FIX]=E5=81=A5=E5=BA=B7=E5=91=8A=E7=9F=A52a?= =?UTF-8?q?=E9=80=89=E9=A1=B9=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/NotifyingMessage.vue | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/views/ebiz/sale/NotifyingMessage.vue b/src/views/ebiz/sale/NotifyingMessage.vue index bc26162cc..c07cefcd5 100644 --- a/src/views/ebiz/sale/NotifyingMessage.vue +++ b/src/views/ebiz/sale/NotifyingMessage.vue @@ -185,11 +185,6 @@ export default { that.impartDTOS.map(it => { it.impartItemDTOS.map(itm => { itm.impartAnswer = '1' - if (itm.impartCode == '2b') { - itm.impartAnswer = '' - } - // console.log(itm.impartAnswer) - // console.log(itm.show) }) }) }, @@ -296,16 +291,16 @@ export default { if (impartCode == '2a') { if (val == '0') { this.showFlag = true + that.impartDTOS.map(it => { + it.impartItemDTOS.map(itm => { + if (itm.impartCode == '2b') { + itm.impartAnswer = '0' + } + }) + }) } else { this.showFlag = false } - that.impartDTOS.map(it => { - it.impartItemDTOS.map(itm => { - if (itm.impartCode == '2b') { - itm.impartAnswer = '' - } - }) - }) } } },