mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-08-29 03:01:25 +08:00
This commit is contained in:
15
web/src/api/pay/refund.ts
Normal file
15
web/src/api/pay/refund.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { http, jumpExport } from '@/utils/http/axios';
|
||||
|
||||
// 获取交易退款列表
|
||||
export function List(params) {
|
||||
return http.request({
|
||||
url: '/payRefund/list',
|
||||
method: 'get',
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 导出交易退款
|
||||
export function Export(params) {
|
||||
jumpExport('/payRefund/export', params);
|
||||
}
|
Reference in New Issue
Block a user