This commit is contained in:
孟帅
2023-05-10 23:54:50 +08:00
parent bbe655a4d8
commit 49a96750bf
314 changed files with 15138 additions and 6244 deletions

15
web/src/api/pay/refund.ts Normal file
View 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);
}