diff --git a/src/project/huizhili/AppCooperationPropaganda/addPropaganda.vue b/src/project/huizhili/AppCooperationPropaganda/addPropaganda.vue index 3b94d590..43f59874 100644 --- a/src/project/huizhili/AppCooperationPropaganda/addPropaganda.vue +++ b/src/project/huizhili/AppCooperationPropaganda/addPropaganda.vue @@ -535,7 +535,12 @@ export default { type: ["user"], selectedUserIds: this.form.examines?.map(e => e.id) }).then((res)=>{ - this.form.examines = res.userList + this.form.examines = res.userList.map(e=> { + return { + ...e, + examineUserId: e.id + } + }) }).catch((err) => { this.$u.toast(err) })