From 46b628fda64afc39884d6eb89e22716f2d1207d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9A=AE=E4=BC=9F?= Date: Wed, 11 Dec 2019 14:13:32 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90IMP=E3=80=91=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E7=BB=AD=E4=BF=9D=E6=A0=87=E8=AF=86=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/AccountInformation.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/ebiz/sale/AccountInformation.vue b/src/views/ebiz/sale/AccountInformation.vue index f81580918..2aee119a8 100644 --- a/src/views/ebiz/sale/AccountInformation.vue +++ b/src/views/ebiz/sale/AccountInformation.vue @@ -276,7 +276,7 @@ export default { cardBookType: '1', cardBookCode: that.bankId, isAutoPay: '0', - isAutoRenewal: this.isRenew ? '1' : '' + isAutoRenewal: this.isRenew == '0' ? '1' : '' } } } @@ -297,7 +297,7 @@ export default { bankCode: that.bankCode, cardBookType: '1', cardBookCode: that.bankId, - isAutoPay: this.isAutoPay ? '1' : '', + isAutoPay: this.isAutoPay == '0' ? '1' : '', isAutoRenewal: '0' } } @@ -317,8 +317,8 @@ export default { bankCode: that.bankCode, cardBookType: '1', cardBookCode: that.bankId, - isAutoPay: this.isAutoPay ? '1' : '', - isAutoRenewal: this.isRenew ? '1' : '' + isAutoPay: this.isAutoPay == '0' ? '1' : '', + isAutoRenewal: this.isRenew == '0' ? '1' : '' } } }