修改 外部标准化协会参会 入会流程 人员选择多选,修改

This commit is contained in:
baoyu
2024-04-28 15:59:07 +08:00
parent 587636d9a9
commit 9e75134bf1
2 changed files with 2 additions and 2 deletions
@@ -773,7 +773,7 @@ export default {
}, },
choiceFEE(type, title, id) { choiceFEE(type, title, id) {
this.nodeList = [] this.nodeList = []
this.nodeList.push(id) this.nodeList = JSON.parse(JSON.stringify(id.split(',')))
this.drawerTitle = title this.drawerTitle = title
this.roleShowflagFEE = true this.roleShowflagFEE = true
}, },
@@ -666,7 +666,7 @@ export default {
// 流程阶段负责人选择 // 流程阶段负责人选择
choiceZRR(type, title, id) { choiceZRR(type, title, id) {
this.nodeList = [] this.nodeList = []
this.nodeList.push(id) this.nodeList = JSON.parse(JSON.stringify(id.split(',')))
this.type = type this.type = type
this.drawerTitle = title this.drawerTitle = title
this.roleShowflag = true this.roleShowflag = true