|
@@ -137,8 +137,8 @@ export class SearchMoreComponent implements OnInit {
|
137
|
137
|
}
|
138
|
138
|
|
139
|
139
|
// 设置标志
|
140
|
|
- setIsSelecting(){
|
141
|
|
- this.isSelecting = true; // 设置标志
|
|
140
|
+ setIsSelecting(flag){
|
|
141
|
+ this.isSelecting = flag; // 设置标志
|
142
|
142
|
}
|
143
|
143
|
|
144
|
144
|
// =================维修分组===================
|
|
@@ -171,11 +171,12 @@ export class SearchMoreComponent implements OnInit {
|
171
|
171
|
});
|
172
|
172
|
}
|
173
|
173
|
openChangeGroup(flag){
|
|
174
|
+ flag && this.setIsSelecting(false);
|
174
|
175
|
flag && this.getGroupList();
|
175
|
176
|
}
|
176
|
177
|
|
177
|
178
|
changeGroup(id){
|
178
|
|
- this.setIsSelecting();
|
|
179
|
+ this.setIsSelecting(true);
|
179
|
180
|
this.userList = [];
|
180
|
181
|
this.validateForm.controls.userId.setValue(null);
|
181
|
182
|
this.getUserList();
|
|
@@ -218,6 +219,7 @@ export class SearchMoreComponent implements OnInit {
|
218
|
219
|
});
|
219
|
220
|
}
|
220
|
221
|
openChangeUser(flag){
|
|
222
|
+ flag && this.setIsSelecting(false);
|
221
|
223
|
flag && this.getUserList();
|
222
|
224
|
}
|
223
|
225
|
|
|
@@ -250,11 +252,12 @@ export class SearchMoreComponent implements OnInit {
|
250
|
252
|
});
|
251
|
253
|
}
|
252
|
254
|
openChangeCategory1(flag){
|
|
255
|
+ flag && this.setIsSelecting(false);
|
253
|
256
|
flag && this.getCategory1List();
|
254
|
257
|
}
|
255
|
258
|
|
256
|
259
|
changeCategory1(id){
|
257
|
|
- this.setIsSelecting();
|
|
260
|
+ this.setIsSelecting(true);
|
258
|
261
|
this.category2List = [];
|
259
|
262
|
this.validateForm.controls.category2Id.setValue(null);
|
260
|
263
|
this.getCategory2List();
|
|
@@ -296,11 +299,12 @@ export class SearchMoreComponent implements OnInit {
|
296
|
299
|
});
|
297
|
300
|
}
|
298
|
301
|
openChangeCategory2(flag){
|
|
302
|
+ flag && this.setIsSelecting(false);
|
299
|
303
|
flag && this.getCategory2List();
|
300
|
304
|
}
|
301
|
305
|
|
302
|
306
|
changeCategory2(id){
|
303
|
|
- this.setIsSelecting();
|
|
307
|
+ this.setIsSelecting(true);
|
304
|
308
|
this.category3List = [];
|
305
|
309
|
this.validateForm.controls.category3Id.setValue(null);
|
306
|
310
|
this.getCategory3List();
|
|
@@ -339,6 +343,7 @@ export class SearchMoreComponent implements OnInit {
|
339
|
343
|
});
|
340
|
344
|
}
|
341
|
345
|
openChangeCategory3(flag){
|
|
346
|
+ flag && this.setIsSelecting(false);
|
342
|
347
|
flag && this.getCategory3List();
|
343
|
348
|
}
|
344
|
349
|
|
|
@@ -382,11 +387,12 @@ export class SearchMoreComponent implements OnInit {
|
382
|
387
|
});
|
383
|
388
|
}
|
384
|
389
|
openChangeBuilding(flag){
|
|
390
|
+ flag && this.setIsSelecting(false);
|
385
|
391
|
flag && this.getBuildingList();
|
386
|
392
|
}
|
387
|
393
|
|
388
|
394
|
changeBuilding(id){
|
389
|
|
- this.setIsSelecting();
|
|
395
|
+ this.setIsSelecting(true);
|
390
|
396
|
this.floorList = [];
|
391
|
397
|
this.validateForm.controls.floorId.setValue(null);
|
392
|
398
|
this.getFloorList();
|
|
@@ -426,6 +432,7 @@ export class SearchMoreComponent implements OnInit {
|
426
|
432
|
});
|
427
|
433
|
}
|
428
|
434
|
openChangeFloor(flag){
|
|
435
|
+ flag && this.setIsSelecting(false);
|
429
|
436
|
flag && this.getFloorList();
|
430
|
437
|
}
|
431
|
438
|
|
|
@@ -459,6 +466,7 @@ export class SearchMoreComponent implements OnInit {
|
459
|
466
|
});
|
460
|
467
|
}
|
461
|
468
|
openChangeCompany(flag){
|
|
469
|
+ flag && this.setIsSelecting(false);
|
462
|
470
|
flag && this.getCompanyList();
|
463
|
471
|
}
|
464
|
472
|
|
|
@@ -492,6 +500,7 @@ export class SearchMoreComponent implements OnInit {
|
492
|
500
|
});
|
493
|
501
|
}
|
494
|
502
|
openChangeRepairDept(flag){
|
|
503
|
+ flag && this.setIsSelecting(false);
|
495
|
504
|
flag && this.getRepairDeptList();
|
496
|
505
|
}
|
497
|
506
|
}
|