...
|
...
|
@@ -55,7 +55,8 @@ const _reviewStatus = (res, req, uid, status) => { |
|
|
|
|
|
} else if (status === '3') {
|
|
|
return {
|
|
|
error: true
|
|
|
error: true,
|
|
|
failReason: '姓名、身份证、银行卡不匹配'
|
|
|
};
|
|
|
} else if (status === '4') {
|
|
|
return {
|
...
|
...
|
@@ -63,6 +64,11 @@ const _reviewStatus = (res, req, uid, status) => { |
|
|
url: jumpUrl
|
|
|
}
|
|
|
};
|
|
|
} else if (status === '5') {
|
|
|
return {
|
|
|
error: true,
|
|
|
failReason: '您的授信未通过,在有货更多的消费,增加信用度,会大大提升审核通过率奥'
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
|
...
|
...
|
@@ -136,7 +142,7 @@ const index = (req, res) => { |
|
|
|
|
|
return params;
|
|
|
});
|
|
|
} else if (openStatus === '1' || openStatus === '3' || openStatus === '4') {
|
|
|
} else if (openStatus === '1' || openStatus === '3' || openStatus === '4' || openStatus === '5') {
|
|
|
res.redirect('/home/installment/review?status=' + openStatus);
|
|
|
}
|
|
|
}).then((result) => {
|
...
|
...
|
|