Commit 1180e06c authored by mengzixuan's avatar mengzixuan

feat(发起新任务): 检验小组下拉选择不显示问题,删除逻辑修改

parent 47df82d7
...@@ -1058,13 +1058,11 @@ export default { ...@@ -1058,13 +1058,11 @@ export default {
} }
// 已被选择的人做禁用 // 已被选择的人做禁用
if (index === 0) { if (index === 0) {
this.mainUserList.find(item => { this.mainUserList.find(
item.userId === this.userId item => item.userId === this.userId
}).disabled = true ).disabled = true
} else { } else {
this.userList.find(item => { this.userList.find(item => item.userId === this.userId).disabled = true
item.userId === this.userId
}).disabled = true
} }
this.userId = '' this.userId = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment