feat: 支付功能迁移(初稿)

This commit is contained in:
dhb52
2023-08-06 23:25:07 +08:00
parent 64b40e7fdf
commit a6eab3cc9a
14 changed files with 1155 additions and 58 deletions

View File

@ -0,0 +1,15 @@
import request from '@/config/axios'
export const getNotifyTaskDetail = (id) => {
return request.get({
url: '/pay/notify/get-detail?id=' + id
})
}
// 获得支付通知分页
export const getNotifyTaskPage = (query) => {
return request.get({
url: '/pay/notify/page',
params: query
})
}