index.ts 336 B

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