diff --git a/src/views/material/ma/typeConfigKeeper/index.vue b/src/views/material/ma/typeConfigKeeper/index.vue index 88b89726..85f8cc9c 100644 --- a/src/views/material/ma/typeConfigKeeper/index.vue +++ b/src/views/material/ma/typeConfigKeeper/index.vue @@ -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;