|
@@ -126,11 +126,21 @@ export class SearchMoreComponent implements OnInit {
|
126
|
126
|
|
127
|
127
|
// 防抖
|
128
|
128
|
isLoading = false;
|
|
129
|
+ isSelecting:boolean = false; // 是否在选中状态
|
129
|
130
|
searchTimer(fun, e) {
|
|
131
|
+ if (this.isSelecting) {
|
|
132
|
+ this.isSelecting = false; // 重置标志
|
|
133
|
+ return; // 跳过处理
|
|
134
|
+ }
|
130
|
135
|
this.isLoading = true;
|
131
|
136
|
this.searchTimerSubject.next([fun, e]);
|
132
|
137
|
}
|
133
|
138
|
|
|
139
|
+ // 设置标志
|
|
140
|
+ setIsSelecting(){
|
|
141
|
+ this.isSelecting = true; // 设置标志
|
|
142
|
+ }
|
|
143
|
+
|
134
|
144
|
// =================维修分组===================
|
135
|
145
|
|
136
|
146
|
// 维修分组搜索
|
|
@@ -165,9 +175,10 @@ export class SearchMoreComponent implements OnInit {
|
165
|
175
|
}
|
166
|
176
|
|
167
|
177
|
changeGroup(id){
|
|
178
|
+ this.setIsSelecting();
|
168
|
179
|
this.userList = [];
|
169
|
180
|
this.validateForm.controls.userId.setValue(null);
|
170
|
|
- this.getUserList('', id);
|
|
181
|
+ this.getUserList();
|
171
|
182
|
}
|
172
|
183
|
|
173
|
184
|
// =================维修人员===================
|
|
@@ -179,8 +190,8 @@ export class SearchMoreComponent implements OnInit {
|
179
|
190
|
|
180
|
191
|
// 获取维修人员列表
|
181
|
192
|
userList:any[] = [];
|
182
|
|
- getUserList(keyword = '', groupId = ''){
|
183
|
|
- if(!groupId){
|
|
193
|
+ getUserList(keyword = ''){
|
|
194
|
+ if(!this.validateForm.value.groupId){
|
184
|
195
|
this.isLoading = false;
|
185
|
196
|
this.userList = [];
|
186
|
197
|
return;
|
|
@@ -191,7 +202,7 @@ export class SearchMoreComponent implements OnInit {
|
191
|
202
|
user: {
|
192
|
203
|
name: keyword,
|
193
|
204
|
simpleQuery: true,
|
194
|
|
- groupdata: { id: groupId },
|
|
205
|
+ groupdata: { id: this.validateForm.value.groupId },
|
195
|
206
|
roleCodes: 'first-line support,second-line support,incident manager',
|
196
|
207
|
engineer: 1,
|
197
|
208
|
},
|
|
@@ -207,7 +218,7 @@ export class SearchMoreComponent implements OnInit {
|
207
|
218
|
});
|
208
|
219
|
}
|
209
|
220
|
openChangeUser(flag){
|
210
|
|
- flag && this.getUserList('', this.validateForm.value.groupId);
|
|
221
|
+ flag && this.getUserList();
|
211
|
222
|
}
|
212
|
223
|
|
213
|
224
|
// =================一级分类===================
|
|
@@ -243,9 +254,10 @@ export class SearchMoreComponent implements OnInit {
|
243
|
254
|
}
|
244
|
255
|
|
245
|
256
|
changeCategory1(id){
|
|
257
|
+ this.setIsSelecting();
|
246
|
258
|
this.category2List = [];
|
247
|
259
|
this.validateForm.controls.category2Id.setValue(null);
|
248
|
|
- this.getCategory2List('', id);
|
|
260
|
+ this.getCategory2List();
|
249
|
261
|
|
250
|
262
|
this.category3List = [];
|
251
|
263
|
this.validateForm.controls.category3Id.setValue(null);
|
|
@@ -260,8 +272,8 @@ export class SearchMoreComponent implements OnInit {
|
260
|
272
|
|
261
|
273
|
// 获取二级分类列表
|
262
|
274
|
category2List:any[] = [];
|
263
|
|
- getCategory2List(keyword = '', parentId = ''){
|
264
|
|
- if(!parentId){
|
|
275
|
+ getCategory2List(keyword = ''){
|
|
276
|
+ if(!this.validateForm.value.category1Id){
|
265
|
277
|
this.isLoading = false;
|
266
|
278
|
this.category2List = [];
|
267
|
279
|
return;
|
|
@@ -270,7 +282,7 @@ export class SearchMoreComponent implements OnInit {
|
270
|
282
|
category: {
|
271
|
283
|
category: keyword,
|
272
|
284
|
selectType: 'mutlQuery',
|
273
|
|
- parent: { id: parentId },
|
|
285
|
+ parent: { id: this.validateForm.value.category1Id },
|
274
|
286
|
},
|
275
|
287
|
};
|
276
|
288
|
this.isLoading = true;
|
|
@@ -284,13 +296,14 @@ export class SearchMoreComponent implements OnInit {
|
284
|
296
|
});
|
285
|
297
|
}
|
286
|
298
|
openChangeCategory2(flag){
|
287
|
|
- flag && this.getCategory2List('', this.validateForm.value.category1Id);
|
|
299
|
+ flag && this.getCategory2List();
|
288
|
300
|
}
|
289
|
301
|
|
290
|
302
|
changeCategory2(id){
|
|
303
|
+ this.setIsSelecting();
|
291
|
304
|
this.category3List = [];
|
292
|
305
|
this.validateForm.controls.category3Id.setValue(null);
|
293
|
|
- this.getCategory3List('', id);
|
|
306
|
+ this.getCategory3List();
|
294
|
307
|
}
|
295
|
308
|
|
296
|
309
|
// =================三级分类===================
|
|
@@ -302,8 +315,8 @@ export class SearchMoreComponent implements OnInit {
|
302
|
315
|
|
303
|
316
|
// 获取三级分类列表
|
304
|
317
|
category3List:any[] = [];
|
305
|
|
- getCategory3List(keyword = '', parentId = ''){
|
306
|
|
- if(!parentId){
|
|
318
|
+ getCategory3List(keyword = ''){
|
|
319
|
+ if(!this.validateForm.value.category2Id){
|
307
|
320
|
this.isLoading = false;
|
308
|
321
|
this.category3List = [];
|
309
|
322
|
return;
|
|
@@ -312,7 +325,7 @@ export class SearchMoreComponent implements OnInit {
|
312
|
325
|
category: {
|
313
|
326
|
category: keyword,
|
314
|
327
|
selectType: 'mutlQuery',
|
315
|
|
- parent: { id: parentId },
|
|
328
|
+ parent: { id: this.validateForm.value.category2Id },
|
316
|
329
|
},
|
317
|
330
|
};
|
318
|
331
|
this.isLoading = true;
|
|
@@ -326,7 +339,7 @@ export class SearchMoreComponent implements OnInit {
|
326
|
339
|
});
|
327
|
340
|
}
|
328
|
341
|
openChangeCategory3(flag){
|
329
|
|
- flag && this.getCategory3List('', this.validateForm.value.category2Id);
|
|
342
|
+ flag && this.getCategory3List();
|
330
|
343
|
}
|
331
|
344
|
|
332
|
345
|
// =================故障来源===================
|
|
@@ -373,9 +386,10 @@ export class SearchMoreComponent implements OnInit {
|
373
|
386
|
}
|
374
|
387
|
|
375
|
388
|
changeBuilding(id){
|
|
389
|
+ this.setIsSelecting();
|
376
|
390
|
this.floorList = [];
|
377
|
391
|
this.validateForm.controls.floorId.setValue(null);
|
378
|
|
- this.getFloorList('', id);
|
|
392
|
+ this.getFloorList();
|
379
|
393
|
}
|
380
|
394
|
|
381
|
395
|
// =================楼层===================
|
|
@@ -387,8 +401,8 @@ export class SearchMoreComponent implements OnInit {
|
387
|
401
|
|
388
|
402
|
// 获取楼层列表
|
389
|
403
|
floorList:any[] = [];
|
390
|
|
- getFloorList(keyword = '', buildingId = ''){
|
391
|
|
- if(!buildingId){
|
|
404
|
+ getFloorList(keyword = ''){
|
|
405
|
+ if(!this.validateForm.value.buildingId){
|
392
|
406
|
this.isLoading = false;
|
393
|
407
|
this.floorList = [];
|
394
|
408
|
return;
|
|
@@ -398,7 +412,7 @@ export class SearchMoreComponent implements OnInit {
|
398
|
412
|
sum: 20,
|
399
|
413
|
floor: {
|
400
|
414
|
floorName: keyword,
|
401
|
|
- buildId : buildingId,
|
|
415
|
+ buildId : this.validateForm.value.buildingId,
|
402
|
416
|
},
|
403
|
417
|
};
|
404
|
418
|
this.isLoading = true;
|
|
@@ -412,7 +426,7 @@ export class SearchMoreComponent implements OnInit {
|
412
|
426
|
});
|
413
|
427
|
}
|
414
|
428
|
openChangeFloor(flag){
|
415
|
|
- flag && this.getFloorList('', this.validateForm.value.buildingId);
|
|
429
|
+ flag && this.getFloorList();
|
416
|
430
|
}
|
417
|
431
|
|
418
|
432
|
// =================三方公司===================
|