立案上报统计查询前后端接口

This commit is contained in:
yuyan02 2025-06-13 17:34:56 +08:00
parent 04bfc9be26
commit 0a63659edc
2 changed files with 1 additions and 19 deletions

View File

@ -260,15 +260,7 @@ function objectSpanMethod({row, column, rowIndex, columnIndex}) {
return {rowspan: 0, colspan: 0}
}
}
if (columnIndex === 1) {
if (rowIndex === 0) {
return {rowspan: rowCountWeek, colspan: 1}
} else if (rowIndex === rowCountWeek) {
return {rowspan: rowCountAll, colspan: 1}
} else {
return {rowspan: 0, colspan: 0}
}
}
}

View File

@ -82,16 +82,6 @@ public class StatisticController {
return PageResult.of(statisticService.getPagelaqkByindustryTypeDetail(query,user));
}
/**
* 执法周报表统计查看立案次数数量
*
* @return 执法周报表统计查看立案次数数量
*/
@GetMapping("/getPagelaslByindustryTypeDetail")
public PageResult<EnforcementInfoHistory> getPagelaslByindustryTypeDetail(CaseQuery query, @CurrentUser RemoteUserInfo user) {
return PageResult.of(statisticService.getPagelaslByindustryTypeDetail(query,user));
}
/**
* 执法周报表统计查看立案填报情况
*