2
0

feat: 微信支付

This commit is contained in:
caiyuchao
2025-01-20 17:04:18 +08:00
parent 83d820cbce
commit 107ff2dfbb
7 changed files with 129 additions and 16 deletions

View File

@@ -56,6 +56,11 @@ function createCommonRequest<ResponseData = any>(
}
}
// 支付宝支付接口放行
if (response.config.url?.includes('/payment/aliPay/pcPay')) {
return Promise.resolve(response);
}
if (opts.isBackendSuccess(response)) {
return Promise.resolve(response);
}