feat: pay tansfer

This commit is contained in:
xingyu4j
2025-05-27 14:38:38 +08:00
parent 3b25efcc7e
commit d46c17293c
4 changed files with 441 additions and 24 deletions

View File

@@ -52,7 +52,9 @@ export function getTransfer(id: number) {
);
}
/** 创建转账单 */
export function createTransfer(data: PayTransferApi.Transfer) {
return requestClient.post('/pay/transfer/create', data);
/** 导出转账单 */
export function exportTransfer(params: any) {
return requestClient.download('/pay/transfer/export-excel', {
params,
});
}