index.ts 308 B

123456789101112131415
  1. import request from '@/config/axios'
  2. export const getNotifyTaskDetail = (id) => {
  3. return request.get({
  4. url: '/pay/notify/get-detail?id=' + id
  5. })
  6. }
  7. // 获得支付通知分页
  8. export const getNotifyTaskPage = (query) => {
  9. return request.get({
  10. url: '/pay/notify/page',
  11. params: query
  12. })
  13. }