2
0

feat: 支付宝测试对接

This commit is contained in:
caiyuchao
2025-01-14 15:50:47 +08:00
parent 0b48107e2e
commit d663ffee2c
3 changed files with 86 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import { request, rawRequest } from '../request';
/** Submit order with different types */
export function aliPayPcPay(params: {orderId: number}) {
return rawRequest({
url: '/payment/aliPay/pcPay',
method: 'post',
params
});
}