mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-08-28 15:23:03 +08:00
16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
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);
|
|
}
|