马宇豪
2025-03-04 509f1d71c91242b11fd287cfcdeafe3d19b2d807
src/api/specialOperationsPay/coalPay.js
@@ -1,11 +1,11 @@
import request from '@/utils/request'
// 数据分页
export function getCoalPayCategory(data) {
export function getCoalPayCategory(query) {
  return request({
    url: '/pay/coalCategory/list',
    method: 'post',
    data: data
    method: 'get',
    params: query
  })
}
@@ -37,11 +37,11 @@
}
// 缴费列表
export function getCoalPayList(data) {
export function getCoalPayList(query) {
  return request({
    url: '/pay/coalPay/list',
    method: 'post',
    data: data
    method: 'get',
    params: query
  })
}
@@ -157,3 +157,19 @@
    params: query
  })
}
export function coalCount(query) {
  return request({
    url: '/pay/coalCategory/count',
    method: 'get',
    params: query
  })
}
export function notCoalCount(query) {
  return request({
    url: '/pay/nonCoalCategory/count',
    method: 'get',
    params: query
  })
}