沈丘营商办后台前端项目
王恒
7 天以前 cd95b584fe7da1ea63476871eabf512213a31e69
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,
  });
};