fix(流程设计): 修复 当多个任务节点选择部门时,无法正常显示已选的部门信息的问题。
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user