update 企标稽查整改完善

This commit is contained in:
danshihao
2023-12-08 19:51:03 +08:00
parent f355235b4e
commit e445cb7e5b
@@ -201,6 +201,14 @@ export default {
}
// 查询人员信息
this.getPersonInfoStructure(this.processKey, () => {
this.personnelInfoData = this.personnelInfoData.map(item => {
// 特殊流程后端没有值不会传回该节点信息
// 后端把值设置为 请选择 ,回显 请选择 说明没选人,就把数据置空
if (item.linkUserIds === '请选择') {
item.linkUserIds = ''
}
return item
})
this.initPersonInfoData(this.currentNode === EsInspectionRectification.uploadRectificationResult.value)
})
getInspectRectifyDataById({ projectId }).then(res => {