转账 - 新增转账订单查询

(cherry picked from commit 753f5de81e)
This commit is contained in:
jason
2023-11-03 08:46:53 +08:00
committed by shizhong
parent 2c485504e7
commit 6949c196d0
6 changed files with 370 additions and 13 deletions

View File

@ -16,3 +16,12 @@ export interface TransferVO {
export const createTransfer = async (data: TransferVO) => {
return await request.post({ url: `/pay/transfer/create`, data })
}
// 查询转账单列表
export const getTransferPage = async (params) => {
return await request.get({ url: `/pay/transfer/page`, params })
}
export const getTransfer = async (id: number) => {
return await request.get({ url: '/pay/transfer/get?id=' + id })
}