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); /** * 分页查询,提供查询提示功能