Files
admin-ui/src/api/customerService/report/index.ts

21 lines
429 B
TypeScript
Raw Normal View History

2025-11-28 17:17:07 +08:00
import request, { newService } from '/@/utils/request';
2025-11-25 17:02:31 +08:00
2025-11-28 17:17:07 +08:00
//获取数据列表
export function getDataList(data: object) {
return newService({
2025-12-01 16:30:31 +08:00
url: '/customerService/data/statistics/list',
2025-11-25 17:02:31 +08:00
method: 'get',
2025-12-01 16:30:31 +08:00
params: data,
2025-11-25 17:02:31 +08:00
});
}
2025-12-04 16:26:26 +08:00
// 导出数据
export function exportProduct(data: object) {
return newService({
url: '/customerService/data/statistics/export',
responseType: 'blob',
method: 'get',
params: data,
});
}