mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 22:46:45 +08:00
银行卡签约需求-前端判断逻辑调整
This commit is contained in:
@@ -452,9 +452,15 @@ export default {
|
||||
this.bankSignJump(shortUrl)
|
||||
resolve(false);
|
||||
}else if (checkRes.signState == '4') {
|
||||
// 签约中
|
||||
this.$toast('亲,您的银行卡正在签约中,请稍后再试')
|
||||
resolve(false);
|
||||
if (checkRes.signConfirmType == '4') {
|
||||
// signConfirmType = 4 代表 招行需签约
|
||||
this.bankSignJump(shortUrl);
|
||||
resolve(false);
|
||||
}else {
|
||||
// 其他银行 签约中
|
||||
this.$toast('亲,您的银行卡正在签约中,请稍后再试')
|
||||
resolve(false);
|
||||
}
|
||||
} else if (checkRes.signState == '3') {
|
||||
// 签约失败
|
||||
const info = '亲,您当前银行卡账户续期签约失败,原因:' + checkRes.resultMessage
|
||||
|
||||
Reference in New Issue
Block a user