账户信息保存的银行卡鉴权接口入参调整

(cherry picked from commit f4de638ee4)
This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-06-20 11:26:14 +08:00
parent 0c3cf59273
commit e0abe58b22

View File

@@ -399,23 +399,12 @@ export default {
} }
let valid = await this.$validator.validate() let valid = await this.$validator.validate()
if (valid) { if (valid) {
let cardData = {} let cardData = {
if (this.saleInsuredInfo.idNo) { account: this.bankId,
cardData = { idNo: this.appntDTO.idNo,
account: this.bankId, idType: this.appntDTO.idType,
idNo: this.saleInsuredInfo.idNo, mobile: this.appntDTO.mobile,
idType: this.saleInsuredInfo.idType, name: this.appntDTO.name
mobile: this.saleInsuredInfo.mobile,
name: this.saleInsuredInfo.name
}
} else {
cardData = {
account: this.bankId,
idNo: this.appntDTO.idNo,
idType: this.appntDTO.idType,
mobile: this.appntDTO.mobile,
name: this.appntDTO.name
}
} }
// 银行卡鉴权[白名单用户自动跳过] // 银行卡鉴权[白名单用户自动跳过]