|
|
@@ -608,7 +608,9 @@
|
|
|
equiLocationCode: item.position[0]?.pathIds,
|
|
|
workItems: [],
|
|
|
repairGroupId: item.executeDeptId,
|
|
|
- repairUserId: item.executeUserId
|
|
|
+ repairUserId: item.executeUserId,
|
|
|
+ repairGroupName: item.executeDeptName,
|
|
|
+ repairUserName: item.executeUserName
|
|
|
};
|
|
|
});
|
|
|
let boolen = planDeviceList.length > 0;
|
|
|
@@ -707,11 +709,21 @@
|
|
|
'executeDeptId',
|
|
|
item.repairGroupId || item.areaPersonInChargeGroupId
|
|
|
);
|
|
|
+ this.$set(
|
|
|
+ data[index],
|
|
|
+ 'executeDeptName',
|
|
|
+ item.repairGroupName || item.areaPersonInChargeGroupName
|
|
|
+ );
|
|
|
this.$set(
|
|
|
data[index],
|
|
|
'executeUserId',
|
|
|
item.repairUserId || item.areaPersonInChargeUserId
|
|
|
);
|
|
|
+ this.$set(
|
|
|
+ data[index],
|
|
|
+ 'executeUserName',
|
|
|
+ item.repairUserName || item.areaPersonInChargeUserName
|
|
|
+ );
|
|
|
});
|
|
|
this.equipmentList = this.equipmentList.concat(data);
|
|
|
this.equipmentList.forEach((item, index) => {
|