转账 - 管理后台新增转账示例

This commit is contained in:
jason
2023-10-29 23:48:10 +08:00
parent e5d6a9dae1
commit 55a961e862
8 changed files with 461 additions and 1 deletions

View File

@ -0,0 +1,25 @@
import request from '@/config/axios'
export interface DemoTransferVO {
price: number
type: number
userName: string
alipayLogonId: string
openid: string
}
// 创建示例转账单
export function createDemoTransfer(data: DemoTransferVO) {
return request.post({
url: '/pay/demo-transfer/create',
data: data
})
}
// 获得示例订单分页
export function getDemoTransferPage(query: PageParam) {
return request.get({
url: '/pay/demo-transfer/page',
params: query
})
}