沈丘营商办后台前端项目
王恒
5 天以前 4ebc73199bcd4b23739a2e1d22c372e8081310c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import request from "@/utils/request";
 
// 充值数据—汇总报表
export const getRechargeReport = (query: Record<string, any>) => {
  return request<RespondDataType>({
    url: "/report/trans/getRechargeReport",
    method: "get",
    params: query,
  });
};
 
// 充值数据—走势
export const getRechargeTrend = (query: Record<string, any>) => {
  return request<RespondDataType>({
    url: "/report/trans/getRechargeTrend",
    method: "get",
    params: query,
  });
};
 
// 充值数据-明细
export const getRechargeList = (query: Record<string, any>) => {
  return request<RespondPageType>({
    url: "/report/trans/getRechargeList",
    method: "get",
    params: query,
  });
};