mall + pay:

1. 增加通知管理
This commit is contained in:
YunaiV
2023-07-20 22:48:06 +08:00
parent b54f7e9256
commit 654b70c514
16 changed files with 584 additions and 27 deletions

View File

@ -0,0 +1,18 @@
import request from '@/utils/request'
// 获得支付通知明细
export function getNotifyTaskDetail(id) {
return request({
url: '/pay/notify/get-detail?id=' + id,
method: 'get'
})
}
// 获得支付通知分页
export function getNotifyTaskPage(query) {
return request({
url: '/pay/notify/page',
method: 'get',
params: query
})
}