From 1476dd08f149500fd00ca5b0b4e4d22a8c6d6a91 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Thu, 2 Mar 2023 11:11:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E4=BA=BAid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../huizhili/AppCooperationPropaganda/addPropaganda.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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) })