Ver código fonte

增加人员筛选

seimin 1 semana atrás
pai
commit
b6a324bd11

+ 1 - 1
src/app/views/new-statistics/distribution-inspection-statistics/distribution-synthesize-statistics/distribution-synthesize-statistics.component.html

@@ -155,7 +155,7 @@
155 155
               </nz-option>
156 156
             </nz-select>
157 157
           </div>
158
-          <div class="more" *ngIf="showMore('dateQualityControlStatistics')" (click)="toPath('/newStatistics/distributionInspectionStatistics/dateQualityControlStatistics')">更多></div>
158
+          <div class="more" *ngIf="showMore(activeIndex == 'hour' ? 'hourQualityControlStatistics' : 'dateQualityControlStatistics')" (click)="toPath(activeIndex == 'hour' ? '/newStatistics/distributionInspectionStatistics/hourQualityControlStatistics' : '/newStatistics/distributionInspectionStatistics/dateQualityControlStatistics')">更多></div>
159 159
         </div>
160 160
         <div class="echarts-repairs">
161 161
           <div echarts class="echarts" [options]='trendOptions'></div>

+ 6 - 5
src/app/views/new-statistics/distribution-inspection-statistics/user-business-statistics/user-business-statistics.component.html

@@ -6,10 +6,10 @@
6 6
       </nz-range-picker>
7 7
     </div>
8 8
     <div class="searchDataItem">
9
-      <span class="label">分组</span>:
10
-      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeGroupInp($event)" nzAllowClear nzPlaceHolder="请选择分组" [(ngModel)]="groupId" (nzOpenChange)="openChangeGroup($event)">
11
-        <ng-container *ngFor="let option of groupList">
12
-          <nz-option *ngIf="!isLoading" [nzLabel]="option.groupName" [nzValue]="option.id"></nz-option>
9
+      <span class="label">人员</span>:
10
+      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeUserInp($event)" nzAllowClear nzPlaceHolder="请选择人员" [(ngModel)]="userId" (nzOpenChange)="openChangeUser($event)">
11
+        <ng-container *ngFor="let option of userList">
12
+          <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
13 13
         </ng-container>
14 14
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
15 15
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
@@ -24,7 +24,8 @@
24 24
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
25 25
   </div>
26 26
 </div>
27
-<div class="moreFilter" *ngIf="fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
27
+<div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
28
+  <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
28 29
   <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
29 30
   <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
30 31
 </div>

+ 26 - 24
src/app/views/new-statistics/distribution-inspection-statistics/user-business-statistics/user-business-statistics.component.ts

@@ -27,7 +27,7 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
27 27
   listLength: number = 0; //表格总数据量
28 28
   widthConfig: any[] = [];
29 29
 
30
-  groupId;//分组id
30
+  userId;//人员id
31 31
 
32 32
   searchTimerSubject = new Subject();
33 33
 
@@ -63,7 +63,7 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
63 63
   }
64 64
 
65 65
   get getMoreFilter(){
66
-    let flag = this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.deptDTO;
66
+    let flag = this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.deptDTO || this.fieldConfig.fields.groupDTO;
67 67
     return flag ? 37 : 0;
68 68
   }
69 69
 
@@ -127,8 +127,9 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
127 127
         endDate: this.dateRange[1] || undefined,
128 128
         hosId: this.getHosId,
129 129
         buildingId: this.fieldConfig.fields.buildingId || undefined,
130
+        groupId: this.fieldConfig.fields.groupId || undefined,
130 131
         deptId: this.fieldConfig.fields.deptId || undefined,
131
-        groupId: this.groupId || undefined,
132
+        userId: this.userId || undefined,
132 133
       };
133 134
       if (field && sort) {
134 135
         postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
@@ -187,8 +188,9 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
187 188
       endDate: this.dateRange[1] || undefined,
188 189
       hosId: this.getHosId,
189 190
       buildingId: this.fieldConfig.fields.buildingId || undefined,
191
+      groupId: this.fieldConfig.fields.groupId || undefined,
190 192
       deptId: this.fieldConfig.fields.deptId || undefined,
191
-      groupId: this.groupId || undefined,
193
+      userId: this.userId || undefined,
192 194
     };
193 195
     if (this.sortCurrentKey && this.sortCurrentValue) {
194 196
       postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
@@ -222,14 +224,14 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
222 224
 		this.sortCurrentValue = "";
223 225
 		this.sortCurrent = {};
224 226
     this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]
225
-    this.groupId = undefined;
226
-    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined};
227
+    this.userId = undefined;
228
+    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined, groupId: undefined};
227 229
     this.search();
228 230
   }
229 231
 
230
-  // 分组搜索
231
-  changeGroupInp(e) {
232
-    this.searchTimer(this.getGroupList, e);
232
+  // 人员搜索
233
+  changeUserInp(e) {
234
+    this.searchTimer(this.getUserList, e);
233 235
   }
234 236
 
235 237
   // 防抖
@@ -239,35 +241,35 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
239 241
     this.searchTimerSubject.next([fun, e]);
240 242
   }
241 243
 
242
-  openChangeGroup(flag){
243
-    flag && this.getGroupList();
244
+  openChangeUser(flag){
245
+    flag && this.getUserList();
244 246
   }
245 247
 
246
-  // 获取分组列表
247
-  groupList:any[] = [];
248
-  getGroupList(keyword?) {
249
-    let data = {
250
-      group2: {
251
-        statisticalHosId: this.getHosId,
252
-        groupName: keyword,
253
-        type: 1,
254
-      },
248
+  // 获取人员列表
249
+  userList:any[] = [];
250
+  getUserList(keyword?) {
251
+    let postData: any = {
255 252
       idx: 0,
256 253
       sum: 20,
254
+      user: {
255
+        name: keyword,
256
+        simpleQuery: true,
257
+        statisticalHosId: this.getHosId,
258
+      },
257 259
     };
258 260
     this.isLoading = true;
259 261
     this.mainService
260
-      .getFetchDataList("data", "group2", data)
262
+      .getFetchDataList("simple/data", "user", postData)
261 263
       .subscribe((data) => {
262 264
         this.isLoading = false;
263
-        this.groupList = data.list;
265
+        this.userList = data.list;
264 266
       });
265 267
   }
266 268
 
267 269
   // 详细搜索
268 270
   fieldConfig:any = {
269
-    fields: {buildingId: undefined, deptId: undefined},
270
-    config: {building: true, dept: true},
271
+    fields: {buildingId: undefined, deptId: undefined, groupId: undefined},
272
+    config: {building: true, dept: true, group: undefined},
271 273
   }
272 274
   showSearchMore:boolean = false;
273 275
   showMore(){

+ 6 - 5
src/app/views/new-statistics/distribution-inspection-statistics/user-quality-control-statistics/user-quality-control-statistics.component.html

@@ -6,10 +6,10 @@
6 6
       </nz-range-picker>
7 7
     </div>
8 8
     <div class="searchDataItem">
9
-      <span class="label">分组</span>:
10
-      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeGroupInp($event)" nzAllowClear nzPlaceHolder="请选择分组" [(ngModel)]="groupId" (nzOpenChange)="openChangeGroup($event)">
11
-        <ng-container *ngFor="let option of groupList">
12
-          <nz-option *ngIf="!isLoading" [nzLabel]="option.groupName" [nzValue]="option.id"></nz-option>
9
+      <span class="label">人员</span>:
10
+      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeUserInp($event)" nzAllowClear nzPlaceHolder="请选择人员" [(ngModel)]="userId" (nzOpenChange)="openChangeUser($event)">
11
+        <ng-container *ngFor="let option of userList">
12
+          <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
13 13
         </ng-container>
14 14
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
15 15
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
@@ -24,7 +24,8 @@
24 24
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
25 25
   </div>
26 26
 </div>
27
-<div class="moreFilter" *ngIf="fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
27
+<div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
28
+  <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
28 29
   <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
29 30
   <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
30 31
 </div>

+ 26 - 24
src/app/views/new-statistics/distribution-inspection-statistics/user-quality-control-statistics/user-quality-control-statistics.component.ts

@@ -25,7 +25,7 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
25 25
   pageSize: number = 30; //表格每页展示条数
26 26
   listLength: number = 0; //表格总数据量
27 27
 
28
-  groupId;//分组id
28
+  userId;//人员id
29 29
 
30 30
   searchTimerSubject = new Subject();
31 31
 
@@ -61,7 +61,7 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
61 61
   }
62 62
 
63 63
   get getMoreFilter(){
64
-    let flag = this.fieldConfig.fields.userDTO || this.fieldConfig.fields.deptDTO || this.fieldConfig.fields.buildingDTO;
64
+    let flag = this.fieldConfig.fields.userDTO || this.fieldConfig.fields.deptDTO || this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.groupDTO;
65 65
     return flag ? 37 : 0;
66 66
   }
67 67
 
@@ -116,8 +116,9 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
116 116
       startDate: this.dateRange[0] || undefined,
117 117
       endDate: this.dateRange[1] || undefined,
118 118
       hosId: this.getHosId,
119
-      groupId: this.groupId || undefined,
119
+      userId: this.userId || undefined,
120 120
       buildingId: this.fieldConfig.fields.buildingId || undefined,
121
+      groupId: this.fieldConfig.fields.groupId || undefined,
121 122
       deptId: this.fieldConfig.fields.deptId || undefined,
122 123
     };
123 124
     if (field && sort) {
@@ -175,8 +176,9 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
175 176
       startDate: this.dateRange[0] || undefined,
176 177
       endDate: this.dateRange[1] || undefined,
177 178
       hosId: this.getHosId,
178
-      groupId: this.groupId || undefined,
179
+      userId: this.userId || undefined,
179 180
       buildingId: this.fieldConfig.fields.buildingId || undefined,
181
+      groupId: this.fieldConfig.fields.groupId || undefined,
180 182
       deptId: this.fieldConfig.fields.deptId || undefined,
181 183
     };
182 184
     if (this.sortCurrentKey && this.sortCurrentValue) {
@@ -211,14 +213,14 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
211 213
 		this.sortCurrentValue = "";
212 214
 		this.sortCurrent = {};
213 215
     this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]
214
-    this.groupId = undefined;
215
-    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined};
216
+    this.userId = undefined;
217
+    this.fieldConfig.fields = {buildingId: undefined, deptId: undefined, groupId: undefined};
216 218
     this.search();
217 219
   }
218 220
 
219
-  // 楼栋搜索
220
-  changeGroupInp(e) {
221
-    this.searchTimer(this.getGroupList, e);
221
+  // 人员搜索
222
+  changeUserInp(e) {
223
+    this.searchTimer(this.getUserList, e);
222 224
   }
223 225
 
224 226
   // 防抖
@@ -228,35 +230,35 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
228 230
     this.searchTimerSubject.next([fun, e]);
229 231
   }
230 232
 
231
-  openChangeGroup(flag){
232
-    flag && this.getGroupList();
233
+  openChangeUser(flag){
234
+    flag && this.getUserList();
233 235
   }
234 236
 
235
-  // 获取分组列表
236
-  groupList:any[] = [];
237
-  getGroupList(keyword?) {
238
-    let data = {
239
-      group2: {
240
-        statisticalHosId: this.getHosId,
241
-        groupName: keyword,
242
-        type: 1,
243
-      },
237
+  // 获取人员列表
238
+  userList:any[] = [];
239
+  getUserList(keyword?) {
240
+    let postData: any = {
244 241
       idx: 0,
245 242
       sum: 20,
243
+      user: {
244
+        name: keyword,
245
+        simpleQuery: true,
246
+        statisticalHosId: this.getHosId,
247
+      },
246 248
     };
247 249
     this.isLoading = true;
248 250
     this.mainService
249
-      .getFetchDataList("data", "group2", data)
251
+      .getFetchDataList("simple/data", "user", postData)
250 252
       .subscribe((data) => {
251 253
         this.isLoading = false;
252
-        this.groupList = data.list;
254
+        this.userList = data.list;
253 255
       });
254 256
   }
255 257
 
256 258
   // 详细搜索
257 259
   fieldConfig:any = {
258
-    fields: {buildingId: undefined, deptId: undefined},
259
-    config: {building: true, dept: true},
260
+    fields: {buildingId: undefined, deptId: undefined, groupId: undefined},
261
+    config: {building: true, dept: true, group: true},
260 262
   }
261 263
   showSearchMore:boolean = false;
262 264
   showMore(){

+ 6 - 5
src/app/views/new-statistics/maintenance-statistics/user-statistics/user-statistics.component.html

@@ -2,10 +2,10 @@
2 2
   <div class="searchData">
3 3
     <app-custom-change-date #customChangeDate [isShowType]="false"></app-custom-change-date>
4 4
     <div class="searchDataItem">
5
-      <span class="label">维修分组</span>:
6
-      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeGroupInp($event)" nzAllowClear nzPlaceHolder="请选择维修分组" [(ngModel)]="groupId" (nzOpenChange)="openChangeGroup($event)">
7
-        <ng-container *ngFor="let option of groupList">
8
-          <nz-option *ngIf="!isLoading" [nzLabel]="option.groupName" [nzValue]="option.id"></nz-option>
5
+      <span class="label">维修人员</span>:
6
+      <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch (nzOnSearch)="changeUserInp($event)" nzAllowClear nzPlaceHolder="请选择维修人员" [(ngModel)]="userId" (nzOpenChange)="openChangeUser($event)">
7
+        <ng-container *ngFor="let option of userList">
8
+          <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
9 9
         </ng-container>
10 10
         <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
11 11
           <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
@@ -20,7 +20,8 @@
20 20
     <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
21 21
   </div>
22 22
 </div>
23
-<div class="moreFilter" *ngIf="fieldConfig.fields.buildingDTO || fieldConfig.fields.floorDTO || fieldConfig.fields.category1DTO || fieldConfig.fields.category2DTO || fieldConfig.fields.category3DTO">
23
+<div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.floorDTO || fieldConfig.fields.category1DTO || fieldConfig.fields.category2DTO || fieldConfig.fields.category3DTO">
24
+  <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
24 25
   <span>{{fieldConfig.fields.category1DTO?.category}}</span>
25 26
   <span>{{fieldConfig.fields.category2DTO?.category}}</span>
26 27
   <span>{{fieldConfig.fields.category3DTO?.category}}</span>

+ 25 - 21
src/app/views/new-statistics/maintenance-statistics/user-statistics/user-statistics.component.ts

@@ -26,7 +26,7 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
26 26
   pageSize: number = 30; //表格每页展示条数
27 27
   listLength: number = 0; //表格总数据量
28 28
 
29
-  groupId;//维修分组id
29
+  userId;//维修人员id
30 30
 
31 31
   searchTimerSubject = new Subject();
32 32
 
@@ -65,7 +65,7 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
65 65
   }
66 66
 
67 67
   get getMoreFilter(){
68
-    let flag = this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.floorDTO || this.fieldConfig.fields.category1DTO || this.fieldConfig.fields.category2DTO || this.fieldConfig.fields.category3DTO;
68
+    let flag = this.fieldConfig.fields.groupDTO || this.fieldConfig.fields.buildingDTO || this.fieldConfig.fields.floorDTO || this.fieldConfig.fields.category1DTO || this.fieldConfig.fields.category2DTO || this.fieldConfig.fields.category3DTO;
69 69
     return flag ? 37 : 0;
70 70
   }
71 71
 
@@ -122,11 +122,12 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
122 122
       hosId: this.hosId || undefined,
123 123
       dutyId: this.dutyId || undefined,
124 124
       parentDutyId: this.parentDutyId || undefined,
125
-      groupId: this.groupId || undefined,
125
+      userId: this.userId || undefined,
126 126
       buildingId: this.fieldConfig.fields.buildingId || undefined,
127 127
       placeId: this.fieldConfig.fields.floorId || undefined,
128 128
       categoryId: this.fieldConfig.fields.categoryId || undefined,
129 129
       hierarchy: this.fieldConfig.fields.hierarchy || undefined,
130
+      groupId: this.fieldConfig.fields.groupId || undefined,
130 131
     };
131 132
     if (field && sort) {
132 133
       postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
@@ -173,11 +174,12 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
173 174
       hosId: this.hosId || undefined,
174 175
       dutyId: this.dutyId || undefined,
175 176
       parentDutyId: this.parentDutyId || undefined,
176
-      groupId: this.groupId || undefined,
177
+      userId: this.userId || undefined,
177 178
       buildingId: this.fieldConfig.fields.buildingId || undefined,
178 179
       placeId: this.fieldConfig.fields.floorId || undefined,
179 180
       categoryId: this.fieldConfig.fields.categoryId || undefined,
180 181
       hierarchy: this.fieldConfig.fields.hierarchy || undefined,
182
+      groupId: this.fieldConfig.fields.groupId || undefined,
181 183
     };
182 184
     if (this.sortCurrentKey && this.sortCurrentValue) {
183 185
       postData.sort = `${this.sortCurrentKey} ${this.sortCurrentValue === "ascend" ? `asc` : `desc`}`
@@ -211,15 +213,15 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
211 213
 		this.sortCurrentValue = "";
212 214
 		this.sortCurrent = {};
213 215
     this.dateRange = []
214
-    this.groupId = undefined;
215
-    this.fieldConfig.fields = {buildingId: undefined, floorId: undefined, categoryId: undefined};
216
+    this.userId = undefined;
217
+    this.fieldConfig.fields = {buildingId: undefined, floorId: undefined, categoryId: undefined, groupId: undefined};
216 218
     this.customChangeDateComponent.resetByDate();
217 219
     this.search();
218 220
   }
219 221
 
220
-  // 维修分组搜索
221
-  changeGroupInp(e) {
222
-    this.searchTimer(this.getGroupList, e);
222
+  // 维修人员搜索
223
+  changeUserInp(e) {
224
+    this.searchTimer(this.getUserList, e);
223 225
   }
224 226
 
225 227
   // 防抖
@@ -229,35 +231,37 @@ export class UserStatisticsComponent implements OnInit, AfterViewInit {
229 231
     this.searchTimerSubject.next([fun, e]);
230 232
   }
231 233
 
232
-  openChangeGroup(flag){
233
-    flag && this.getGroupList();
234
+  openChangeUser(flag){
235
+    flag && this.getUserList();
234 236
   }
235 237
 
236
-  // 获取维修分组列表
237
-  groupList:any[] = [];
238
-  getGroupList(keyword?) {
238
+  // 获取维修人员列表
239
+  userList:any[] = [];
240
+  getUserList(keyword?) {
239 241
     let data = {
240
-      group2: {
242
+      user: {
243
+        name: keyword,
244
+        simpleQuery: true,
241 245
         statisticalHosId: this.getHosId,
242
-        groupName: keyword,
243
-        type: 3,
246
+        roleCodes: 'first-line support,second-line support,incident manager',
247
+        engineer: 1,
244 248
       },
245 249
       idx: 0,
246 250
       sum: 20,
247 251
     };
248 252
     this.isLoading = true;
249 253
     this.mainService
250
-      .getFetchDataList("data", "group2", data)
254
+      .getFetchDataList("simple/data", "user", data)
251 255
       .subscribe((data) => {
252 256
         this.isLoading = false;
253
-        this.groupList = data.list;
257
+        this.userList = data.list;
254 258
       });
255 259
   }
256 260
 
257 261
   // 详细搜索
258 262
   fieldConfig:any = {
259
-    fields: {buildingId: undefined, floorId: undefined, categoryId: undefined},
260
-    config: {buildingAndFloor: true, category123: true},
263
+    fields: {buildingId: undefined, floorId: undefined, categoryId: undefined, groupId: undefined},
264
+    config: {buildingAndFloor: true, category123: true, group: true},
261 265
   }
262 266
   showSearchMore:boolean = false;
263 267
   showMore(){