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' : '' } } }