fix: 更新SignupModal中的studentList映射以包含realName

This commit is contained in:
huweihang
2025-12-18 15:25:45 +08:00
parent 47036beb64
commit caa9ee848e

View File

@@ -622,7 +622,7 @@ export default {
type: 13,
deptIds: this.deptList.map((e) => e.id),
groupIds: this.auditSelectRows.map((e) => e.id),
studentList: this.stuSelectRows.map((e) => ({id: e.id})),
studentList: this.stuSelectRows.map((e) => ({id: e.id, realName: e.realName})),
}).then((res) => {
console.log('res', res);
this.$showManageMessage("添加成功", 'success');