fix(report): 调整工单统计接口分页大小

- 将工单统计接口的分页大小从1调整为10
- 确保接口能返回完整的统计数据
- 避免因分页过小导致的数据截断问题
This commit is contained in:
2025-12-16 12:22:28 +08:00
parent 10611efc00
commit 751794ad13

View File

@@ -136,7 +136,7 @@ export const batchGetTableList = (reportCodes: string, data?) => {
// 统计周期 cycle: daymonthyear 对应月日年 // 统计周期 cycle: daymonthyear 对应月日年
export const getWorkOrderStatistics = (data: {workOrderType: string, taskType: string, campus_id?: string}) => { export const getWorkOrderStatistics = (data: {workOrderType: string, taskType: string, campus_id?: string}) => {
return request.post({ url: '/jeelowcode/report-data/list/report_work_order_statistics', data: {...data, pageNo: 1, pageSize: 1} }) return request.post({ url: '/jeelowcode/report-data/list/report_work_order_statistics', data: {...data, pageNo: 1, pageSize: 10} })
} }