Merge branch 'dev_pw' into dev

This commit is contained in:
皮伟
2019-12-11 14:14:10 +08:00

View File

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