1期问题修改

This commit is contained in:
赵依梦
2025-12-18 11:58:36 +08:00
parent 2389b06f28
commit 4277f985b0
10 changed files with 99 additions and 50 deletions

View File

@@ -615,7 +615,7 @@ export default {
this.groupMemberNumber &&
this.groupMemberCount < this.groupMemberNumber + this.projectSelectRows.length + this.stuSelectRows.length
) {
return this.$showMessage("添加小组学员超过最大值", 'error');
return this.$showManageMessage("添加小组学员超过最大值", 'error');
}
saveStu({
targetId: this.courseDetail?.id || this.id,
@@ -625,7 +625,7 @@ export default {
studentList: this.stuSelectRows.map((e) => ({id: e.id})),
}).then((res) => {
console.log('res', res);
this.$showMessage("添加成功", 'success');
this.$showManageMessage("添加成功", 'success');
this.$emit("confirm");
this.handleClose();
});