You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
316 B
12 lines
316 B
2 years ago
|
import { defHttp } from '@/utils/http/axios'
|
||
|
|
||
|
// 获得支付通知明细
|
||
|
export function getNotifyTaskDetail(id) {
|
||
|
return defHttp.get({ url: `/pay/notify/get-detail?id=${id}` })
|
||
|
}
|
||
|
|
||
|
// 获得支付通知分页
|
||
|
export function getNotifyTaskPage(params) {
|
||
|
return defHttp.get({ url: '/pay/notify/page', params })
|
||
|
}
|