|
@@ -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(){
|