fix(流程设计): 修复 当多个任务节点选择部门时,无法正常显示已选的部门信息的问题。

This commit is contained in:
konbai
2023-06-09 00:46:23 +08:00
parent 313884735b
commit a4aa080337

View File

@@ -216,12 +216,11 @@ export default {
}
this.showMultiFlog = true;
} else if (this.dataType === 'DEPTS') {
this.getDeptTreeData().then(() => {
let deptIdData = bpmnElementObj['candidateGroups'] || [];
if (deptIdData && deptIdData.length > 0) {
this.deptIds = deptIdData.split(',');
}
});
this.getDeptTreeData();
let deptIdData = bpmnElementObj['candidateGroups'] || [];
if (deptIdData && deptIdData.length > 0) {
this.deptIds = deptIdData.split(',');
}
this.showMultiFlog = true;
}
this.getElementLoop(bpmnElementObj);