Explorar el Código

fix(支付): 修正支付宝H5支付接口的请求地址

将支付宝H5支付接口的请求地址从'/pay/alipay/h5'更改为'/web/aliPayCoin',以匹配后端接口变更
Shirley hace 1 mes
padre
commit
2963c4347c
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/api/pay.js

+ 2 - 1
src/api/pay.js

@@ -31,7 +31,8 @@ export function aliPayCoin(data, platform) {
 // 支付宝H5支付接口
 export function aliPayH5(data, platform) {
   return request({
-    url: '/pay/alipay/h5',
+    // url: '/pay/alipay/h5',
+    url: '/web/aliPayCoin',
     method: 'post',
     headers: {
       'Content-Type': 'application/json',