@@ -137,12 +137,14 @@
this.form.examineUserIds = e.examineUserIds.split(',').map((v, index) => {
return {
id: v,
+ sysUserId: v,
name: e.examineUserNames.split(',')[index]
}
})
this.form.fillingUserIds = e.fillingUserIds.split(',').map((v, index) => {
return {
id: v,
+ sysUserId: v,
name: e.fillingUserNames.split(',')[index]
}
})
@@ -186,8 +188,8 @@
this.instance.post(`/app/appassessmentscorev2examinegroup/addOrUpdate`, {
...this.form,
id: this.id || '',
- fillingUserIds: this.form.fillingUserIds.map(v => v.id).join(','),
- examineUserIds: this.form.examineUserIds.map(v => v.id).join(','),
+ fillingUserIds: this.form.fillingUserIds.map(v => v.sysUserId).join(','),
+ examineUserIds: this.form.examineUserIds.map(v => v.sysUserId).join(','),
fillingUserNames: this.form.fillingUserIds.map(v => v.name).join(','),
examineUserNames: this.form.examineUserIds.map(v => v.name).join(',')
}).then(res => {
diff --git a/ui/packages/common/AiUserSelecter.vue b/ui/packages/common/AiUserSelecter.vue
index 2b44de89..6482966a 100644
--- a/ui/packages/common/AiUserSelecter.vue
+++ b/ui/packages/common/AiUserSelecter.vue
@@ -438,7 +438,6 @@
}
}).then(res => {
if (res.code == 0) {
- console.log(this.disabledList)
this.list = res.data.records.filter(v => {
return this.disabledList.indexOf(v.id) === -1
}).map(v => {