...
|
...
|
@@ -73,6 +73,11 @@ const payAli = (req, res, next) => { |
|
|
return;
|
|
|
}
|
|
|
|
|
|
// 支付失败
|
|
|
if (req.query.trade_status !== 'TRADE_SUCCESS') {
|
|
|
return res.render('pay/pay-ali', Object.assign(responseData));
|
|
|
}
|
|
|
|
|
|
payModel.getPayAli(param).then(result => {
|
|
|
if (result.match === true) {
|
|
|
res.render('pay/pay-ali', Object.assign(responseData, result));
|
...
|
...
|
|