Commit 1180e06c authored by mengzixuan's avatar mengzixuan

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

parent 47df82d7
......@@ -1058,13 +1058,11 @@ export default {
}
// 已被选择的人做禁用
if (index === 0) {
this.mainUserList.find(item => {
item.userId === this.userId
}).disabled = true
this.mainUserList.find(
item => item.userId === this.userId
).disabled = true
} else {
this.userList.find(item => {
item.userId === this.userId
}).disabled = true
this.userList.find(item => item.userId === this.userId).disabled = true
}
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