fix: 流程详情页面关闭按钮重复

This commit is contained in:
tony
2022-12-27 22:01:55 +08:00
parent 4b6ff48fe9
commit d6a22e8489
9 changed files with 9 additions and 41 deletions

View File

@@ -114,10 +114,6 @@ export default {
},
/** 指定流程办理人员列表 */
getDataList() {
// todo 待根据部门选择人员
// const params = {
//
// }
userList().then(res =>{
res.data.forEach(val =>{
val.userId = val.userId.toString();
@@ -142,26 +138,6 @@ export default {
this.xmlOpen = true;
this.xmlData = vkBeautify.xml(xmlData);
},
// /** 获取数据类型 */
// dataType(data){
// this.users = [];
// this.groups = [];
// if (data) {
// if (data.dataType === 'dynamic') {
// if (data.userType === 'assignee') {
// this.users = [{nickName: "${INITIATOR}", userId: "${INITIATOR}"},
// {nickName: "#{approval}", userId: "#{approval}"}
// ]
// } else if (data.userType === 'candidateUsers') {
// this.users = [ {nickName: "#{approval}", userId: "#{approval}"}]
// } else {
// this.groups = [{roleName: "#{approval}", roleId: "#{approval}"}]
// }
// } else {
// this.getDataList()
// }
// }
// }
},
};
</script>