续期银行卡签约校验之前端修正 --李婕煜

This commit is contained in:
li.jieyu@ebiz-digits.com
2021-07-26 11:25:02 +08:00
parent 8e1f1d0845
commit 20aae78f75

View File

@@ -433,7 +433,7 @@ export default {
const bankCode = JSON.parse(window.localStorage.getItem('underWriteData')).bankCode;
const shortUrl = checkRes.shortUrl;
// 招商银行卡 提示去官微签约
if(checkRes.signState == '1' && checkRes.needSign == '1' && this.radio == '' && 'ICBC' == bankCode){
if(checkRes.signState == '1' && checkRes.needSign == '1' && this.radio == '' && ('CMB' == bankCode || '308' == bankCode)){
this.bankSignJump(shortUrl)
return false;
}
@@ -471,6 +471,9 @@ export default {
return true;
}
}
}else{
this.$toast(checkRes.resultMessage)
return false;
}
})
}