diff --git a/src/main/java/com/emr/controller/FontController.java b/src/main/java/com/emr/controller/FontController.java index 7b1b5b8..4eb2398 100644 --- a/src/main/java/com/emr/controller/FontController.java +++ b/src/main/java/com/emr/controller/FontController.java @@ -1,9 +1,16 @@ package com.emr.controller; import com.emr.dao.CommomMapper; +import com.emr.dao.approve.Emr_Apply_ApproveMapper; import com.emr.dao.recordLock.Emr_LockMapper; import com.emr.dao.tScanAssort.T_Scan_AssortMapper; +import com.emr.entity.Power_User; +import com.emr.entity.Zd_Assort; +import com.emr.entity.recordType.Emr_Type; import com.emr.service.FontService; +import com.emr.service.Zd_AssortServiceImpl; +import com.emr.service.recordType.EmrTypeService; +import com.emr.util.ExceptionPrintUtil; import com.emr.util.Jpg2PdfUtil; import com.emr.vo.FontVo.*; import com.emr.vo.Msg; @@ -25,6 +32,7 @@ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; +import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.*; import java.net.URL; @@ -56,6 +64,13 @@ public class FontController { @Autowired private FontService fontService; + @Autowired + private EmrTypeService emrTypeService; + @Autowired + private Zd_AssortServiceImpl assortService; + @Autowired + private Emr_Apply_ApproveMapper apply_approveMapper; + /** * 2.1 @@ -417,4 +432,43 @@ public class FontController { public Msg updateTableCommom(CommomVo commom) throws Exception{ return fontService.updateTableCommom(commom); } + + + /** + * @description: 第三方调阅病案影像图像 + * @params: patientId + * @params: flag + * @author linjj + * @date: 2023/5/18 15:45 + */ + @RequestMapping("showRecordIframeBlood") + public String showRecordIframeBlood(String patientId, String flag, Model model, HttpServletRequest request) { + model.addAttribute("patientId", patientId); + Power_User user = new Power_User(); + user.setUserName("admin"); + user.setRoleId(0); + //打印分类集合 + List emrTypes = null; + List zdAssorts = null; + int isDownload = 0; + try { + emrTypes = emrTypeService.selectAllByCreater2(1, request); + //病案分段集合 + zdAssorts = assortService.selectAllByPower(user); + isDownload = apply_approveMapper.selectIsPowerByUser(user.getUserName(), patientId, 3); + } catch (Exception e) { + ExceptionPrintUtil.printException(e); + e.printStackTrace(); + } + model.addAttribute("emrTypes", emrTypes); + model.addAttribute("zdAssorts", zdAssorts); + model.addAttribute("isDownload", isDownload); + //查询是否有打印权限 + int printFlag = 1; + int moveFlag = 1; + model.addAttribute("moveFlag", moveFlag); + model.addAttribute("printFlag", printFlag); + model.addAttribute("flag", flag); + return "recordManage/commomSearch/showRecordIframeBlood"; + } } diff --git a/src/main/java/com/emr/controller/commomSearch/CommomSearchController.java b/src/main/java/com/emr/controller/commomSearch/CommomSearchController.java index c03db15..f771055 100644 --- a/src/main/java/com/emr/controller/commomSearch/CommomSearchController.java +++ b/src/main/java/com/emr/controller/commomSearch/CommomSearchController.java @@ -30,6 +30,7 @@ import org.apache.commons.lang3.StringUtils; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.util.CollectionUtils; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; @@ -92,6 +93,8 @@ public class CommomSearchController { private LogService logService; @Autowired private EmrPdfWaterSetMapper pdfWaterSetMapper; + @Value("${initialization}") + private String initialization; @Autowired private EmrPrintDownloadInfoMapper emrPrintDownloadInfoMapper; @@ -103,6 +106,21 @@ public class CommomSearchController { return "recordManage/commomSearch/commomListqf"; } + /** + * @description: 加载是否初始化标识 + * @params: Initialization + * @return: Initialization + * @author linjj + * @date: 2023/6/2 17:04 + */ + @RequestMapping("getInitialization") + @ResponseBody + public String getInitialization() { + return initialization; + } + + + //加载性别 @RequestMapping("getSex") @ResponseBody @@ -203,6 +221,23 @@ public class CommomSearchController { return null; } } + + + + + + + /*** + * 根据用户权限查询分段 + * @param request + * @return + */ + @RequestMapping("selectEmrType") + @ResponseBody + public String selectEmrType(HttpServletRequest request) { + List emrTypes = assortService.selectEmrType(); + return JSON.toJSONString(emrTypes); + } /******************************病案预览操作****************************/ /** * 174医院、祈福 @@ -652,7 +687,6 @@ public class CommomSearchController { } } } - List archiveDetails = new ArrayList<>(); if (commomVos.size() == 0) { List archiveDetail = archiveDetailMapper.selectPdfPathByPatient2(patientId); //第一级:全部影像资料 @@ -862,15 +896,16 @@ public class CommomSearchController { String pdfName = "档案管理PDF"; //根据图片路径转换pdf EmrPdfWaterSet emrPdfWaterSet = pdfWaterSetMapper.selectByPrimaryKey(1); + //定义第二文本水印 姓名 + 科室 + ip EmrPdfWaterSet emrPdfWaterSet1 = commomService.getEmrPdfWaterSet(emrPdfWaterSet); - //获取角色是否加水印 - Integer userSex = user.getUserSex(); - if (userSex == null || userSex == 0) { - emrPdfWaterSet.setEffective(Short.valueOf("0")); - emrPdfWaterSet1.setEffective(Short.valueOf("0")); + //UserEffective为1是开启用户信息水印 + Short userEffective = emrPdfWaterSet.getUserEffective(); + if (userEffective==1){ + img2PdfUtil.imageToPdf(response, scanPages, pdfName, emrPdfWaterSet, emrPdfWaterSet1); + }else { + img2PdfUtil.imageToPdfUserEffective(response, scanPages, pdfName, emrPdfWaterSet); } - img2PdfUtil.imageToPdf(response, scanPages, pdfName, emrPdfWaterSet, emrPdfWaterSet1); //移除缓存 request.removeAttribute(mapKey); } @@ -883,7 +918,16 @@ public class CommomSearchController { Power_User user = (Power_User) request.getSession().getAttribute("CURRENT_USER"); String mapKey = user.getUserName() + "_" + patientId; List filePaths = (List) request.getSession().getAttribute(mapKey); - Jpg2PdfUtil.mulFile2One(response, filePaths, pdfWater); + if (!CollectionUtils.isEmpty(filePaths)) { + //根据图片路径转换pdf + EmrPdfWaterSet emrPdfWaterSet = pdfWaterSetMapper.selectByPrimaryKey(1); + //定义第二文本水印 姓名 + 科室 + ip + EmrPdfWaterSet emrPdfWaterSet1 = commomService.getEmrPdfWaterSet(emrPdfWaterSet); + Jpg2PdfUtil.mulFile2One2(response, filePaths, pdfWater,emrPdfWaterSet); + //移除缓存 + request.removeAttribute(mapKey); + } + } } diff --git a/src/main/java/com/emr/controller/emrApprove/ApproveController.java b/src/main/java/com/emr/controller/emrApprove/ApproveController.java index cf2d544..09ee520 100644 --- a/src/main/java/com/emr/controller/emrApprove/ApproveController.java +++ b/src/main/java/com/emr/controller/emrApprove/ApproveController.java @@ -77,6 +77,8 @@ public class ApproveController { private Emr_Apply_ApproveMapper applyApproveMapper; @Value("${POWER_URLHEAD}") private String POWER_URLHEAD; + @Value("${applyApproveFlag}") + private String applyApproveFlag; @Autowired private CommomService commomService; /** @@ -152,6 +154,12 @@ public class ApproveController { } } if (!commomtables.isEmpty()) { + if (applyApproveFlag.equals("1")){ + SimpleDateFormat fmt1 = new SimpleDateFormat("yyyy-MM-dd"); + List expireTimeList = applyApproveService.expireTime(fmt1.format(new Date()),applyApprove.getEffeDays()); + String s = expireTimeList.get(expireTimeList.size()-1); + applyApprove.setEffeTime(s); + } applyApprove.setApplyer(powerUser.getUserName()); applyApprove.setApplyTime(fmt.format(new Date())); List list = new ArrayList<>(); @@ -783,12 +791,25 @@ public class ApproveController { @RequestMapping(value = "updateApprove") @ResponseBody public ResultUtil updateApprove(Emr_Apply_Approve applyApprove,HttpServletRequest request) throws Exception{ - Power_User user = (Power_User)request.getSession().getAttribute("CURRENT_USER"); - String userName = user.getUserName(); - applyApprove.setApprover(userName); - SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd"); - applyApprove.setApproveTime(fmt.format(new Date())); - applyApproveService.updateEmrApplyApprove(applyApprove); + //如果等一就是开启了过滤节假日 + if (applyApproveFlag.equals("1")){ + Power_User user = (Power_User)request.getSession().getAttribute("CURRENT_USER"); + String userName = user.getUserName(); + applyApprove.setApprover(userName); + SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd"); + List expireTimeList = applyApproveService.expireTime(fmt.format(new Date()),applyApprove.getEffeDays()); + String s = expireTimeList.get(expireTimeList.size()-1); + applyApprove.setApproveTime(fmt.format(new Date())); + applyApprove.setEffeTime(s); + applyApproveService.updateEmrApplyApprove(applyApprove); + }else { + Power_User user = (Power_User)request.getSession().getAttribute("CURRENT_USER"); + String userName = user.getUserName(); + applyApprove.setApprover(userName); + SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd"); + applyApprove.setApproveTime(fmt.format(new Date())); + applyApproveService.updateEmrApplyApprove(applyApprove); + } return ResultUtil.ok(); } diff --git a/src/main/java/com/emr/controller/quality/QualityController.java b/src/main/java/com/emr/controller/quality/QualityController.java index 207757a..c9fac07 100644 --- a/src/main/java/com/emr/controller/quality/QualityController.java +++ b/src/main/java/com/emr/controller/quality/QualityController.java @@ -28,7 +28,7 @@ public class QualityController { @RequiresPermissions("/qualityModel/qualityJsp") - @OptionalLog(module = "查看", methods = "常用查询页面") + @OptionalLog(module = "查看", methods = "质检") @RequestMapping("qualityJsp") public String qualityModel(Model model) { return "quality/quality"; diff --git a/src/main/java/com/emr/controller/templateSearch/TemplateSearchController.java b/src/main/java/com/emr/controller/templateSearch/TemplateSearchController.java index 03d201d..5a46d99 100644 --- a/src/main/java/com/emr/controller/templateSearch/TemplateSearchController.java +++ b/src/main/java/com/emr/controller/templateSearch/TemplateSearchController.java @@ -858,9 +858,23 @@ public class TemplateSearchController { */ @RequestMapping(value = "cutomSearchTable", produces = {"text/json;charset=UTF-8"}, method = RequestMethod.POST) @ResponseBody - public String cutomSearchTable(String selectSql,String fromTableSql,String whereSql,String orderBys,Integer page, Integer limit, HttpServletRequest request) { + public String cutomSearchTable(String selectSql,String fromTableSql,String whereSql,String orderBys,Integer page, Integer limit, HttpServletRequest request,String sortNames,String sortOrder) { //匹配权限 Power_User user = (Power_User) request.getSession().getAttribute("CURRENT_USER"); + if (!sortNames.equals("id")&&!sortNames.equals("id")){ + if (sortNames.equals("disDate")){ + orderBys="order by commomtable.dis_date"+" "+sortOrder; + } + if (sortNames.equals("admissDate")){ + orderBys="order by commomtable.admiss_date"+" "+sortOrder; + } + if (sortNames.equals("admissId")){ + orderBys="order by commomtable.admiss_id"+" "+sortOrder; + } + if (sortNames.equals("inpatientNo")){ + orderBys="order by commomtable.inpatient_no"+" "+sortOrder; + } + } String sql = getSql(selectSql, fromTableSql, whereSql, orderBys, user); if (StringUtils.isNoneBlank(selectSql)) { if (null != page && null != limit) { @@ -1104,8 +1118,7 @@ public class TemplateSearchController { // } if (null != scanPathVos && !scanPathVos.isEmpty()) { // 创建临时路径,存放压缩文件 - String zipFilePath = "D://tmp"; - File file = new File(zipFilePath); + File file = new File("D:/tmp"); //查询保存文件目录是否存在 createFile(file); // 压缩输出流,包装流,将临时文件输出流包装成压缩流,将所有文件输出到这里,打成zip包 @@ -1130,7 +1143,7 @@ public class TemplateSearchController { //该流不可以手动关闭,手动关闭下载会出问题,下载完成后会自动关闭 ServletOutputStream outputStream = response.getOutputStream(); - FileInputStream inputStream = new FileInputStream(zipFilePath); + FileInputStream inputStream = new FileInputStream("D:/tmp"); // 如果是SpringBoot框架,在这个路径 // org.apache.tomcat.util.http.fileupload.IOUtils产品 // 否则需要自主引入apache的 commons-io依赖 @@ -1141,7 +1154,7 @@ public class TemplateSearchController { inputStream.close(); //下载完成之后,删掉这个zip包 - File fileTempZip = new File(zipFilePath); + File fileTempZip = new File("D:/tmp"); fileTempZip.delete(); } } catch (Exception e) { @@ -1391,12 +1404,15 @@ public class TemplateSearchController { public String getScanCountByPatientId(String patientId, String flag) { if (StringUtils.isNoneBlank(patientId)) { try { - List scanPathVos = scanPathMapper.selectScanFileByBloodPatientIds(patientId, null, flag); + List scanPathVos = scanPathMapper.selectScanFileByBloodPatientId(patientId, null, flag); if (null != scanPathVos && !scanPathVos.isEmpty()) { return "1"; - } else { - return "0"; } + List commomTrees = archiveDetailMapper.selectPdfPathByPatient3(patientId, null); + if (null != commomTrees && !commomTrees.isEmpty()){ + return "1"; + } + } catch (Exception e) { ExceptionPrintUtil.printException(e); e.printStackTrace(); @@ -1424,7 +1440,7 @@ public class TemplateSearchController { } assortIds = assortIdsBuilder.toString(); } - List scanPathVos = scanPathMapper.selectScanFileByBloodPatientIds(patientIds, assortIds, flag); + List scanPathVos = scanPathMapper.selectScanFileByBloodPatientIds1(patientIds, assortIds, flag); if (null != scanPathVos && !scanPathVos.isEmpty()) { EmrPdfWaterSet emrPdfWaterSet = pdfWaterSetMapper.selectByPrimaryKey(1); //文件路径集合 @@ -1461,8 +1477,16 @@ public class TemplateSearchController { } } SimpleDateFormat fmt = new SimpleDateFormat("yyyyMMdd"); - String filename=fmt.format(new Date()); - Jpg2PdfUtil.mulFile2One3(response,filePaths,filename); + List scanPathVos1 = scanPathMapper.selectFilaname(patientIds); + ScanPathVo vo = scanPathVos1.get(0); + String disDate = ""; + if (null != vo.getDisDate()) { + disDate = fmt.format(vo.getDisDate()); + } + EmrPdfWaterSet emrPdfWaterSet = pdfWaterSetMapper.selectByPrimaryKey(1); + //下载文件名 + String filename = vo.getInpatientNo().trim() + "-" + vo.getName().trim() + "-" + disDate.trim() + "_" + fmt.format(new Date()); + Jpg2PdfUtil.mulFile2One3(response,filePaths,filename,emrPdfWaterSet); } } catch (Exception e) { ExceptionPrintUtil.printException(e); diff --git a/src/main/java/com/emr/dao/Archive_DetailMapper.java b/src/main/java/com/emr/dao/Archive_DetailMapper.java index 65c7756..e7f3b5f 100644 --- a/src/main/java/com/emr/dao/Archive_DetailMapper.java +++ b/src/main/java/com/emr/dao/Archive_DetailMapper.java @@ -14,6 +14,7 @@ public interface Archive_DetailMapper { List selectPdfPathByPatient(@Param("patientId")String patientId,@Param("assortIds")String assortIds); List selectPdfPathByPatient2(@Param("patientId")String patientId); + List selectPDFRATH(@Param("patientId")String patientId); List selectPdfPathByPatient3(@Param("patientIds")String patientIds,@Param("assortIds")String assortIds); diff --git a/src/main/java/com/emr/dao/Zd_AssortMapper.java b/src/main/java/com/emr/dao/Zd_AssortMapper.java index e6c69ae..ae7d7bc 100644 --- a/src/main/java/com/emr/dao/Zd_AssortMapper.java +++ b/src/main/java/com/emr/dao/Zd_AssortMapper.java @@ -1,6 +1,7 @@ package com.emr.dao; import com.emr.entity.Zd_Assort; +import com.emr.entity.recordType.Emr_Type; import org.apache.ibatis.annotations.Param; import java.util.List; @@ -13,6 +14,9 @@ public interface Zd_AssortMapper { * 全查 * */ List selectAll(@Param("record")Zd_Assort record); + + + ListselectEmrType(); /** * 验证名称是否重复 * */ diff --git a/src/main/java/com/emr/dao/approve/Emr_Apply_ApproveMapper.java b/src/main/java/com/emr/dao/approve/Emr_Apply_ApproveMapper.java index 698bf65..e26055d 100644 --- a/src/main/java/com/emr/dao/approve/Emr_Apply_ApproveMapper.java +++ b/src/main/java/com/emr/dao/approve/Emr_Apply_ApproveMapper.java @@ -80,4 +80,6 @@ public interface Emr_Apply_ApproveMapper { * @return */ Emr_Apply_Approve selectByApplyerAndPatientId(@Param("userName")String userName,@Param("patientId")String patientId); + + ListexpireTime(@Param("currentTime") String currentTime,@Param("effeDays") int effeDays); } \ No newline at end of file diff --git a/src/main/java/com/emr/dao/commomSearch/ScanPathMapper.java b/src/main/java/com/emr/dao/commomSearch/ScanPathMapper.java index 6592863..cabe0c3 100644 --- a/src/main/java/com/emr/dao/commomSearch/ScanPathMapper.java +++ b/src/main/java/com/emr/dao/commomSearch/ScanPathMapper.java @@ -14,6 +14,17 @@ public interface ScanPathMapper { List selectScanFileByBloodPatientIds(@Param("patientIds") String patientIds, @Param("assortIds") String assortIds, @Param("flag") String flag); + + List selectScanFileByBloodPatientIds1(@Param("patientIds") String patientIds, + @Param("assortIds") String assortIds, @Param("flag") String flag); + + + List selectFilaname(@Param("patientIds") String patientIds); + + + List selectScanFileByBloodPatientId(@Param("patientIds") String patientIds, + @Param("assortIds") String assortIds, @Param("flag") String flag); + /** * 修改图片路径 * @param sql diff --git a/src/main/java/com/emr/dao/emrPdfWaterSet/EmrPdfWaterSetMapper.xml b/src/main/java/com/emr/dao/emrPdfWaterSet/EmrPdfWaterSetMapper.xml index 2715ea3..9a40b67 100644 --- a/src/main/java/com/emr/dao/emrPdfWaterSet/EmrPdfWaterSetMapper.xml +++ b/src/main/java/com/emr/dao/emrPdfWaterSet/EmrPdfWaterSetMapper.xml @@ -27,7 +27,7 @@ id, effective, up_or_under, transparent, text, text_x, text_y, text_color, text_size, text_rotation, is_img, img_file, img_width, img_height, img_x, img_y, unique_id, - download_effective, download_is_img, print_effective, print_is_img + download_effective, download_is_img, print_effective, print_is_img,user_effective + \ No newline at end of file diff --git a/src/main/resources/mapper/Zd_AssortMapper.xml b/src/main/resources/mapper/Zd_AssortMapper.xml index 0945273..aae845c 100644 --- a/src/main/resources/mapper/Zd_AssortMapper.xml +++ b/src/main/resources/mapper/Zd_AssortMapper.xml @@ -153,4 +153,7 @@ ORDER BY zd_assort.assort_sort + \ No newline at end of file diff --git a/src/main/resources/mapper/approve/Emr_Apply_ApproveMapper.xml b/src/main/resources/mapper/approve/Emr_Apply_ApproveMapper.xml index 14e23cb..bd2dffc 100644 --- a/src/main/resources/mapper/approve/Emr_Apply_ApproveMapper.xml +++ b/src/main/resources/mapper/approve/Emr_Apply_ApproveMapper.xml @@ -315,11 +315,11 @@ a.dis_date, a.approve_notes, a.patient_id, - CASE WHEN effe_time <= convert(varchar(10),getdate(),23) THEN '已过期' WHEN apply_state='1' THEN '未提交' WHEN apply_state='2' THEN '已提交' + CASE WHEN effe_time <= convert(varchar(10),getdate()-1,23) THEN '已过期' WHEN apply_state='1' THEN '未提交' WHEN apply_state='2' THEN '已提交' END apply_state, a.approver, a.approve_time, - CASE WHEN effe_time <= convert(varchar(10),getdate(),23) THEN '已过期' WHEN approve_state = '1' THEN '审核通过' WHEN approve_state='2' THEN + CASE WHEN effe_time <= convert(varchar(10),getdate()-1,23) THEN '已过期' WHEN approve_state = '1' THEN '审核通过' WHEN approve_state='2' THEN '审核不通过' WHEN approve_state is null THEN '待审批' END approve_state, c.name, CASE WHEN emr_lock.id is null THEN 0 ELSE 1 END lockStatus @@ -687,4 +687,9 @@ and apply_type = 4 order by id desc + + + \ No newline at end of file diff --git a/src/main/resources/mapper/commomSearch/ScanPathMapper.xml b/src/main/resources/mapper/commomSearch/ScanPathMapper.xml index 63e0c7d..fa407c9 100644 --- a/src/main/resources/mapper/commomSearch/ScanPathMapper.xml +++ b/src/main/resources/mapper/commomSearch/ScanPathMapper.xml @@ -68,6 +68,42 @@ dbo.zd_assort.assort_sort,t_scan_assort.scan_page + + + ${sql} @@ -79,4 +115,35 @@ + + \ No newline at end of file diff --git a/src/main/resources/mapper/emrPdfWaterSet/EmrPdfWaterSetMapper.xml b/src/main/resources/mapper/emrPdfWaterSet/EmrPdfWaterSetMapper.xml index 2715ea3..9a40b67 100644 --- a/src/main/resources/mapper/emrPdfWaterSet/EmrPdfWaterSetMapper.xml +++ b/src/main/resources/mapper/emrPdfWaterSet/EmrPdfWaterSetMapper.xml @@ -27,7 +27,7 @@ id, effective, up_or_under, transparent, text, text_x, text_y, text_color, text_size, text_rotation, is_img, img_file, img_width, img_height, img_x, img_y, unique_id, - download_effective, download_is_img, print_effective, print_is_img + download_effective, download_is_img, print_effective, print_is_img,user_effective SELECT COUNT(distinct ph) FROM commomtable diff --git a/src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml b/src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml index 6812e8d..86bf327 100644 --- a/src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml +++ b/src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml @@ -56,6 +56,8 @@ + + -
+
diff --git a/src/main/webapp/WEB-INF/views/otherManage/printInfoList174.jsp b/src/main/webapp/WEB-INF/views/otherManage/printInfoList174.jsp index 0a2e937..9aa65fb 100644 --- a/src/main/webapp/WEB-INF/views/otherManage/printInfoList174.jsp +++ b/src/main/webapp/WEB-INF/views/otherManage/printInfoList174.jsp @@ -132,7 +132,8 @@
- +
diff --git a/src/main/webapp/WEB-INF/views/recordManage/commomSearch/commomListqf.jsp b/src/main/webapp/WEB-INF/views/recordManage/commomSearch/commomListqf.jsp index 85fc986..ec5fd62 100644 --- a/src/main/webapp/WEB-INF/views/recordManage/commomSearch/commomListqf.jsp +++ b/src/main/webapp/WEB-INF/views/recordManage/commomSearch/commomListqf.jsp @@ -705,7 +705,7 @@ -
+