From c0e996c689dddd643abbab04744321dcd5ef7fa6 Mon Sep 17 00:00:00 2001 From: zhangchaoyang02 Date: Fri, 9 May 2025 18:28:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=8A=93=E5=8F=96=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E6=8E=A5=E5=8F=A3=EF=BC=8C=E5=89=8D=E7=AB=AF=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/router/index.js | 2 +- client/src/utils/Constants.js | 1 - .../repository/PagingAndSortingSpecificationRepository.java | 6 ++++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/client/src/router/index.js b/client/src/router/index.js index 6c03a5b..c9ed224 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -20,7 +20,7 @@ const baseRoutes = [ path: '/svi', name: 'Svi', component: SviLayout, - meta: {title: ''}, + meta: {title: '布局'}, children: [ { path: 'index', diff --git a/client/src/utils/Constants.js b/client/src/utils/Constants.js index a79c762..a558889 100644 --- a/client/src/utils/Constants.js +++ b/client/src/utils/Constants.js @@ -895,7 +895,6 @@ const DEFAULT_ENTERPRISE_DETAIL = { //安全基础管理信息 productionManageInfoExp: {productionManageSystems: [{systemName: '', systemCompileDate: ''}], productionManagePlans: [{planName: '', planCompileDate: '', planType: ''}]}, //生产设备设施及公用辅助用房 - productionEquipmentExp: {productionFacilities: [{equipName: '', equipType: '', commissioningDate: ''}], auxiliaryBuildings: [{auxiliaryName: '', floorArea: '', commissioningDate: ''}]}, //行政许可信息 // administrativeLicenseInfos: [{licenseNum: "", issuingOffice: "", validFrom: "", validEnd: "", licenseType: [], qtPics: [], qtPicList: [], xkzPics: [], xkzPicList: []}], diff --git a/server/src/main/java/com/aisino/iles/common/repository/PagingAndSortingSpecificationRepository.java b/server/src/main/java/com/aisino/iles/common/repository/PagingAndSortingSpecificationRepository.java index 81aaf39..c622fe3 100644 --- a/server/src/main/java/com/aisino/iles/common/repository/PagingAndSortingSpecificationRepository.java +++ b/server/src/main/java/com/aisino/iles/common/repository/PagingAndSortingSpecificationRepository.java @@ -88,7 +88,8 @@ public interface PagingAndSortingSpecificationRepository { * @param queryHints 查询提示 * @return 列表数据 */ - List findAll(@Nullable Specification specification, Map queryHints); + List findAll(@Nullable Specification specification, + Map queryHints); /** * 带实体图的分页查询,可提高查询性能 (实体图的作用是可以管理,查询需要的属性和实体,而不是默认的字段属性) @@ -98,7 +99,8 @@ public interface PagingAndSortingSpecificationRepository { * @param entityGraph 实体图名称 实体图使用的抓取模式是fetch * @return 分页数据 */ - Page findAll(@Nullable Specification specification, Pageable page, String entityGraph); + Page findAll(@Nullable Specification specification, + Pageable page, String entityGraph); /** * 分页查询,提供查询提示功能