审核人id

This commit is contained in:
shijingjing
2023-03-02 11:11:33 +08:00
parent 5c34331f26
commit 1476dd08f1

View File

@@ -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)
})