feat 开发者调试功能

This commit is contained in:
DaxPay
2024-09-14 16:20:56 +08:00
parent 736373c5dc
commit 07ebc258e6

View File

@@ -0,0 +1,20 @@
import { defHttp } from '@/utils/http/axios'
import { PageResult, Result } from '#/axios'
/**
* 支付
*/
export function tradePay(params) {
return defHttp.post<Result<PayResult>>({ url: '/develop/trade/pay', params })
}
/**
* 支付返回结果
*/
export interface PayResult {
}
/**
*
*/