This commit is contained in:
jjLv 2024-10-31 19:24:03 +08:00
parent d16a200a72
commit 127320e8db
1 changed files with 4 additions and 1 deletions

View File

@ -464,7 +464,10 @@ export default {
this.userList.push({'typeId':item.typeId,'userId':this.userIdTemp})
})
selection.forEach(item=>{
this.userNoList.push({'typeId':item.typeId,'userId':item.keeperUserId})
if(item.keeperUserId!=null){
this.userNoList.push({'typeId':item.typeId,'userId':item.keeperUserId})
}
})
this.single = selection.length != 1;
this.multiple = !selection.length;