diff --git a/src/main/java/com/cm/systemcity/controller/apis/leave/LeaveController.java b/src/main/java/com/cm/systemcity/controller/apis/leave/LeaveController.java index 862940a..9ac428a 100644 --- a/src/main/java/com/cm/systemcity/controller/apis/leave/LeaveController.java +++ b/src/main/java/com/cm/systemcity/controller/apis/leave/LeaveController.java @@ -46,6 +46,13 @@ public class LeaveController extends AbstractController { return leaveService.listPageLeaveDetail(page); } + @GetMapping("list-page-leave-detail1") + public SuccessResultList> listPageLeaveDetail1(ListPage page) throws SearchException { + Map params = requestParams(); + page.setParams(params); + return leaveService.listPageLeaveDetail1(page); + } + @GetMapping("list-page-leave-detail2") public SuccessResultList> listPageLeaveDetail2(ListPage page) throws SearchException { Map params = requestParams(); diff --git a/src/main/java/com/cm/systemcity/dao/reportcase/IReportCaseDao.java b/src/main/java/com/cm/systemcity/dao/reportcase/IReportCaseDao.java index ccf85b3..af33053 100755 --- a/src/main/java/com/cm/systemcity/dao/reportcase/IReportCaseDao.java +++ b/src/main/java/com/cm/systemcity/dao/reportcase/IReportCaseDao.java @@ -379,4 +379,7 @@ public interface IReportCaseDao { List listReportCaseHandleDTO(Map params); List listDept(Map params); + + Integer countReportCaseAssign(Map reportCaseAssignMap); + } diff --git a/src/main/java/com/cm/systemcity/service/leave/ILeaveService.java b/src/main/java/com/cm/systemcity/service/leave/ILeaveService.java index 4c94919..e7a6aab 100644 --- a/src/main/java/com/cm/systemcity/service/leave/ILeaveService.java +++ b/src/main/java/com/cm/systemcity/service/leave/ILeaveService.java @@ -188,6 +188,9 @@ public interface ILeaveService { */ SuccessResultList> listPageLeaveDetail(ListPage page) throws SearchException; + SuccessResultList> listPageLeaveDetail1(ListPage page); + + /** * 2级分页请假详情列表 * @@ -224,5 +227,4 @@ public interface ILeaveService { Integer countUserLeave(Map params) throws SearchException; - } diff --git a/src/main/java/com/cm/systemcity/service/leave/impl/LeaveServiceImpl.java b/src/main/java/com/cm/systemcity/service/leave/impl/LeaveServiceImpl.java index 1a8422a..db96149 100644 --- a/src/main/java/com/cm/systemcity/service/leave/impl/LeaveServiceImpl.java +++ b/src/main/java/com/cm/systemcity/service/leave/impl/LeaveServiceImpl.java @@ -307,6 +307,14 @@ public class LeaveServiceImpl extends BaseService implements ILeaveService { return new SuccessResultList<>(list, pageInfo.getPageNum(), pageInfo.getTotal()); } + @Override + public SuccessResultList> listPageLeaveDetail1(ListPage page) { + PageHelper.startPage(page.getPage(), page.getRows()); + List list = leaveDao.listLeave(page.getParams()); + PageInfo pageInfo = new PageInfo<>(list); + return new SuccessResultList<>(list, pageInfo.getPageNum(), pageInfo.getTotal()); + } + @Override public SuccessResultList> listPageLeaveDetail2(ListPage page) { // 1级审批通过的请假列表 diff --git a/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseAutoAppServiceImpl.java b/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseAutoAppServiceImpl.java index 6ffb2c3..ea66073 100644 --- a/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseAutoAppServiceImpl.java +++ b/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseAutoAppServiceImpl.java @@ -66,14 +66,14 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport * caseSource 2巡检采集 3专管员上报 */ // 判断是否为自处理案件 - params.put("caseFlowType","2"); - params.put("caseSource","2"); + params.put("caseFlowType", "2"); + params.put("caseSource", "2"); // 查询用户权限 List> roleList = reportCaseDao.listRoleByUserId(appTokenUser.getId()); - for (Map item : roleList){ - if("bc405346-8714-4ded-89ac-9cc4d755f66a".equals(item.get("roleId").toString())){ - params.put("caseFlowType","1"); - params.put("caseSource","3"); + for (Map item : roleList) { + if ("bc405346-8714-4ded-89ac-9cc4d755f66a".equals(item.get("roleId").toString())) { + params.put("caseFlowType", "1"); + params.put("caseSource", "3"); break; } } @@ -92,7 +92,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport selfAutoAssign(query, token, appTokenUser); return new SuccessResult(); } - if (1 != isSelf){ + if (1 != isSelf) { /** * 查询该案件类型所绑定的处理部门及街镇 * 可查询到绑定关系即为职能部门案件,查询不到即为街镇案件 @@ -114,7 +114,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport List bindingList = bindingDepartment.listBindingDepartmentByCaseType(query); // 未查询到所绑定部门 转为街镇案件 - if(bindingList == null || bindingList.size() == 0){ + if (bindingList == null || bindingList.size() == 0) { params.put("caseFlowType", "2"); // 受理 saveReportCaseInfo(params); @@ -153,7 +153,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport } // 查询到绑定部门信息 转为职能部门案件 - if(bindingList != null && bindingList.size() > 0){ + if (bindingList != null && bindingList.size() > 0) { params.put("caseFlowType", "1"); // 受理 saveReportCaseInfo(params); @@ -183,13 +183,13 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport addReportCaseLog(token, caseLogParams); // 查询部门下所有专管员 List> deptUsers = new ArrayList<>(); - for(BindingDepartmentDTO deptItem : bindingList){ + for (BindingDepartmentDTO deptItem : bindingList) { List> userList = bindingDepartment.listDepartmentUser(deptItem.getDepartmentId()); - if(userList != null && userList.size() > 0){ + if (userList != null && userList.size() > 0) { deptUsers.addAll(userList); } } - if(deptUsers == null || deptUsers.size() == 0){ + if (deptUsers == null || deptUsers.size() == 0) { // 补充那件为查询绑定部门日志 caseLogParams.clear(); caseLogParams.put("caseId", caseId); @@ -203,7 +203,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport query.clear(); List handleUserIds = new ArrayList<>(); List handleUserNames = new ArrayList<>(); - for(Map item : deptUsers ){ + for (Map item : deptUsers) { query.put("userId", item.get("userId").toString()); List gridList = userPointsService.listUserGrid(query); if (gridList.isEmpty()) { @@ -220,7 +220,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport } } } - if(handleUserIds.size() == 0){ + if (handleUserIds.size() == 0) { caseLogParams.clear(); caseLogParams.put("caseId", caseId); caseLogParams.put("userOpinion", "案件发生地未匹配到对应专管员负责网格,需网格办手动处理"); @@ -278,7 +278,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport * @throws UpdateException * @throws SaveException */ - private void autoAccept(Map params, String token,UserDTO userDTO) throws UpdateException, SaveException { + private void autoAccept(Map params, String token, UserDTO userDTO) throws UpdateException, SaveException { // 修改案件状态为受理 Map reportCaseParams = new HashMap<>(0); reportCaseParams.put("reportCaseId", params.get("caseId").toString()); @@ -298,13 +298,13 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport params.put("acceptOpinion", "自动受理"); params.put("acceptStatus", 1); setSaveInfo(token, params); - params.put("creator",userDTO.getUserId()); - params.put("modifier",userDTO.getUserId()); + params.put("creator", userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.saveReportCaseAccept(params); //保存受理日志 caseLogParams.put("handleStatus", 1); - autoReportCaseLog(token, caseLogParams,userDTO); + autoReportCaseLog(token, caseLogParams, userDTO); } /** @@ -321,7 +321,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport reportCaseParams.put("reportCaseId", params.get("caseId").toString()); reportCaseParams.put("caseStatus", 2); setUpdateInfo(token, params); - params.put("modifier",userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.updateReportCase(reportCaseParams); //修改案件受理状态-模拟受理过程 @@ -329,7 +329,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport reportCaseParams.put("caseId", params.get("caseId").toString()); reportCaseParams.put("isRegister", 1); setUpdateInfo(token, params); - params.put("modifier",userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.updateReportCaseAccept(reportCaseParams); //添加立案信息 @@ -337,8 +337,8 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport params.put("registerOpinion", "自动立案"); params.put("registerUserName", userDTO.getUserName()); setSaveInfo(token, params); - params.put("creator",userDTO.getUserId()); - params.put("modifier",userDTO.getUserId()); + params.put("creator", userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.saveReportCaseRegister(params); // 添加立案日志 @@ -347,7 +347,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport caseLogParams.put("userOpinion", params.get("registerOpinion")); caseLogParams.put("handleStatus", 1); caseLogParams.put("optionType", "案件立案"); - autoReportCaseLog(token, caseLogParams,userDTO); + autoReportCaseLog(token, caseLogParams, userDTO); } /** @@ -364,14 +364,14 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport reportCaseParams.put("reportCaseId", params.get("caseId").toString()); reportCaseParams.put("caseStatus", 3); setUpdateInfo(token, reportCaseParams); - params.put("modifier",userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.updateReportCase(reportCaseParams); // 修改立案信息-模拟立案过程 reportCaseParams.clear(); reportCaseParams.put("caseId", params.get("caseId").toString()); reportCaseParams.put("isAssign", 1); setUpdateInfo(token, reportCaseParams); - params.put("modifier",userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.updateReportCaseRegister(reportCaseParams); // 新增下派信息 @@ -383,8 +383,8 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport params.put("handleUserName", userDTO.getUserName()); params.put("assignOpinion", "自动下派"); setSaveInfo(token, params); - params.put("creator",userDTO.getUserId()); - params.put("modifier",userDTO.getUserId()); + params.put("creator", userDTO.getUserId()); + params.put("modifier", userDTO.getUserId()); reportCaseDao.saveReportCaseAssign(params); // 下派日志 @@ -397,7 +397,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport caseLogParams.put("handleUserPhone", params.get("handleUserPhone")); caseLogParams.put("handleTime", params.get("handleTime")); caseLogParams.put("handleStatus", 1); - autoReportCaseLog(token, caseLogParams,userDTO); + autoReportCaseLog(token, caseLogParams, userDTO); } /** @@ -522,7 +522,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport addReportCaseLog(token, caseLogParams); } - private void saveAssignWithUserIds(Map params, String token, List userIdList ,List userNameList){ + private void saveAssignWithUserIds(Map params, String token, List userIdList, List userNameList) { // 修改案件状态为待处理 Map reportCaseParams = new HashMap<>(); reportCaseParams.put("reportCaseId", params.get("caseId").toString()); @@ -544,7 +544,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport params.put("assignUserName", appTokenUser.getName()); params.put("handleUserType", 0); params.put("handleTime", 1); - params.put("handleUserId", StringUtils.join(userIdList,",")); + params.put("handleUserId", StringUtils.join(userIdList, ",")); params.put("handleUserName", StringUtils.join(userNameList, ",")); params.put("assignOpinion", "案件转派"); setSaveInfo(token, params); @@ -554,7 +554,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport caseLogParams.put("caseId", params.get("caseId")); caseLogParams.put("optionType", "案件转派"); caseLogParams.put("userOpinion", params.get("assignOpinion")); - caseLogParams.put("handleUserId", StringUtils.join(userIdList,",")); + caseLogParams.put("handleUserId", StringUtils.join(userIdList, ",")); caseLogParams.put("handleUserName", StringUtils.join(userNameList, ",")); caseLogParams.put("handleUserPhone", ""); caseLogParams.put("handleTime", params.get("handleTime")); @@ -567,7 +567,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport @Override public SuccessResult returnReportToAccept(String token, Map params) { String caseId = params.get("caseId").toString(); - params.put("caseId",caseId); + params.put("caseId", caseId); //删除下派信息 reportCaseDao.removeReportCaseAssign(params); //删除立案信息 @@ -575,23 +575,24 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport //删除受理信息 reportCaseDao.removeReportCaseAccept(params); //修改上报状态为待受理 - params.put("reportCaseId",caseId); - params.put("caseStatus","0"); - params.put("isAccept","0"); - setUpdateInfo(token,params); + params.put("reportCaseId", caseId); + params.put("caseStatus", "0"); + params.put("isAccept", "0"); + setUpdateInfo(token, params); reportCaseDao.updateReportCase(params); //写日志 Map logParam = new HashMap<>(); - logParam.put("caseId",caseId); + logParam.put("caseId", caseId); logParam.put("optionType", "案件下派"); logParam.put("userOpinion", "回退重新受理"); logParam.put("handleStatus", 0); - addReportCaseLog(token,logParam); + addReportCaseLog(token, logParam); return new SuccessResult(); } /** * 添加案件上报日志 + * * @param token * @param caseLogParams * @throws SaveException @@ -618,6 +619,7 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport /** * 自动流转日志 + * * @param token * @param caseLogParams * @throws SaveException @@ -676,19 +678,19 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport String userId = appTokenUser.getId(); boolean isNPerson = false; List> roleList = reportCaseDao.listRoleByUserId(userId); - for (Map item : roleList){ - if("bc405346-8714-4ded-89ac-9cc4d755f66a".equals(item.get("roleId").toString())){ + for (Map item : roleList) { + if ("bc405346-8714-4ded-89ac-9cc4d755f66a".equals(item.get("roleId").toString())) { isNPerson = true; break; } } // 专管员返回自己部门所有人员 List userDTOList = new ArrayList<>(); - if(isNPerson){ + if (isNPerson) { List> deptList = reportCaseDao.listDeptByUserId(userId); - for(Map item : deptList){ + for (Map item : deptList) { List> userList = reportCaseDao.listUserByDeptId(item.get("departmentId").toString()); - for (Map u : userList){ + for (Map u : userList) { UserDTO userDTO = new UserDTO(); userDTO.setUserId(u.get("userId").toString()); userDTO.setUserName(u.get("userName").toString()); @@ -697,17 +699,17 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport } } // 网格员返回自己上级和所有下级 - if(!isNPerson){ + if (!isNPerson) { params.put("reportCaseId", caseId); ReportCaseDTO reportCase = reportCaseDao.getReportCase(params); String areaId = reportCase.getAreaId(); String communityId = reportCase.getCommunityId(); - params.put("areaId",areaId); - params.put("communityId",communityId); + params.put("areaId", areaId); + params.put("communityId", communityId); // 查询三级网格长 - params.put("communityBossLevel","2"); + params.put("communityBossLevel", "2"); List> userList3 = reportCaseDao.listUserFromCommunityBoss(params); - for (Map u : userList3){ + for (Map u : userList3) { UserDTO userDTO = new UserDTO(); userDTO.setPrefixUserName("(3级网格长) "); userDTO.setUserId(u.get("userId").toString()); @@ -715,9 +717,9 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport userDTOList.add(userDTO); } // 查询四级网格长 - params.put("communityBossLevel","3"); + params.put("communityBossLevel", "3"); List> userList4 = reportCaseDao.listUserFromCommunityBoss(params); - for (Map u : userList4){ + for (Map u : userList4) { UserDTO userDTO = new UserDTO(); userDTO.setPrefixUserName("(4级网格长) "); userDTO.setUserId(u.get("userId").toString()); @@ -725,9 +727,9 @@ public class ReportCaseAutoAppServiceImpl extends BaseService implements IReport userDTOList.add(userDTO); } // 查询五级网格员 - params.put("communityBossLevel","4"); + params.put("communityBossLevel", "4"); List> userList5 = reportCaseDao.listUserFromCommunityBoss(params); - for (Map u : userList5){ + for (Map u : userList5) { UserDTO userDTO = new UserDTO(); userDTO.setPrefixUserName("(5级网格员) "); userDTO.setUserId(u.get("userId").toString()); diff --git a/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseServiceImpl.java b/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseServiceImpl.java index 112abd3..4686f9d 100755 --- a/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseServiceImpl.java +++ b/src/main/java/com/cm/systemcity/service/reportcase/impl/ReportCaseServiceImpl.java @@ -593,9 +593,17 @@ public class ReportCaseServiceImpl extends BaseService implements IReportCaseSer * 案件下派页面已将userId调整 * handleUserId 业务调整为多人 ','号分割 */ - setSaveInfo(params); - reportCaseDao.saveReportCaseAssign(params); - + Map reportCaseAssignMap = new HashMap<>(); + reportCaseAssignMap.put("caseId", params.get("caseId").toString()); + Integer count = reportCaseDao.countReportCaseAssign(reportCaseAssignMap); + count = count == null ? 0 : count; + if (count == 0) { + setSaveInfo(params); + reportCaseDao.saveReportCaseAssign(params); + } else { + setUpdateInfo(params); + reportCaseDao.updateReportCaseAssign(params); + } // 添加案件转派日志 Map caseLogParams = new HashMap<>(); caseLogParams.put("caseId", params.get("caseId")); @@ -1206,7 +1214,7 @@ public class ReportCaseServiceImpl extends BaseService implements IReportCaseSer fileRatio = caseTotalCount > 0 ? fileCount.doubleValue() / caseTotalCount.doubleValue() : 0; caseStatisticDTO.setFileRatio(fileRatio >= 1 ? String.format("%.0f", 1.0 * 100) : String.format("%.2f", fileRatio * 100)); }); - if(caseStatisticDTOS == null) { + if (caseStatisticDTOS == null) { caseStatisticDTOS = departmentCaseStatisticDTOS; } else { caseStatisticDTOS.addAll(departmentCaseStatisticDTOS); diff --git a/src/main/java/com/cm/systemcity/task/SystemTask.java b/src/main/java/com/cm/systemcity/task/SystemTask.java index 4015d9b..1310372 100644 --- a/src/main/java/com/cm/systemcity/task/SystemTask.java +++ b/src/main/java/com/cm/systemcity/task/SystemTask.java @@ -40,12 +40,6 @@ public class SystemTask { @Autowired private IAssessmentService assessmentService; - @Scheduled(cron = "0 0 5 * * ?") - public void ddyDayWorkTask() { - // 统计过去24小时内没有转派的案件 - - } - /** * 每天0点定时任务 */ diff --git a/src/main/resources/mybatis/mapper/reportcase/reportcase-mapper.xml b/src/main/resources/mybatis/mapper/reportcase/reportcase-mapper.xml index 34d5204..86a78c9 100755 --- a/src/main/resources/mybatis/mapper/reportcase/reportcase-mapper.xml +++ b/src/main/resources/mybatis/mapper/reportcase/reportcase-mapper.xml @@ -709,6 +709,9 @@ UPDATE city_report_case_assign SET + + handle_user_type = #{handleUserType}, + handle_user_id = #{handleUserId}, @@ -730,6 +733,17 @@ case_id = #{caseId} + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/assessment/list_day_zf.html b/src/main/resources/static/route/assessment/list_day_zf.html new file mode 100644 index 0000000..53e91ea --- /dev/null +++ b/src/main/resources/static/route/assessment/list_day_zf.html @@ -0,0 +1,263 @@ + + + + + + + + + + + + + +
+
+
+
+
+
+
+ +
+
+ +
+ + + +
+ +
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/assessment/list_history_zf.html b/src/main/resources/static/route/assessment/list_history_zf.html new file mode 100644 index 0000000..5fb732c --- /dev/null +++ b/src/main/resources/static/route/assessment/list_history_zf.html @@ -0,0 +1,258 @@ + + + + + + + + + + + + + +
+
+
+
+
+
+
+ +
+
+ +
+ + +
+
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/bigdata/list-case-info-7dayajjz.html b/src/main/resources/static/route/bigdata/list-case-info-7dayajjz.html index f47fd69..f10bcc2 100644 --- a/src/main/resources/static/route/bigdata/list-case-info-7dayajjz.html +++ b/src/main/resources/static/route/bigdata/list-case-info-7dayajjz.html @@ -407,8 +407,7 @@ area: ['70%', '80%'], shadeClose: true, anim: 2, - content: restAjax.path('route/bigdata/show.html?reportCaseId={id}', - [obj.data.reportCaseId]), + content: restAjax.path('route/bigdata/show.html?reportCaseId={id}', [obj.data.reportCaseId]), end: function() { } }); @@ -421,8 +420,7 @@ area: ['70%', '80%'], shadeClose: true, anim: 2, - content: top.restAjax.path('route/bigdata/list_case_log.html?reportCaseId={id}', - [obj.data.reportCaseId]), + content: restAjax.path('route/bigdata/list_case_log.html?reportCaseId={id}', [obj.data.reportCaseId]), end: function() { } }); diff --git a/src/main/resources/static/route/leave/list1.html b/src/main/resources/static/route/leave/list1.html new file mode 100644 index 0000000..1af5812 --- /dev/null +++ b/src/main/resources/static/route/leave/list1.html @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + +
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/reportcase/list_community_handle_zf.html b/src/main/resources/static/route/reportcase/list_community_handle_zf.html new file mode 100644 index 0000000..14bb1cc --- /dev/null +++ b/src/main/resources/static/route/reportcase/list_community_handle_zf.html @@ -0,0 +1,477 @@ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+ +
+
+ +
+ +
+ +
+
+ +
+ + +
+ +
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/reportcase/list_community_inspect_zf.html b/src/main/resources/static/route/reportcase/list_community_inspect_zf.html new file mode 100644 index 0000000..c8079f2 --- /dev/null +++ b/src/main/resources/static/route/reportcase/list_community_inspect_zf.html @@ -0,0 +1,466 @@ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+ + +
+
+ +
+ +
+ +
+
+ +
+ + +
+ +
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/route/reportcase/list_community_placeonfile_zf.html b/src/main/resources/static/route/reportcase/list_community_placeonfile_zf.html new file mode 100644 index 0000000..9efcd7e --- /dev/null +++ b/src/main/resources/static/route/reportcase/list_community_placeonfile_zf.html @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+ + +
+
+ +
+ +
+ +
+
+ +
+ + +
+ +
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file