feat: 添加分数更新功能

This commit is contained in:
2025-09-23 12:51:53 +08:00
parent 330ea3d2c6
commit abfdcbb07b
3 changed files with 57 additions and 22 deletions

View File

@@ -242,3 +242,5 @@ export const groupMemberList = (obj) => http.post('/admin/studentGroup/groupMemb
export const delGroupStudent = (obj) => http.post('/admin/studentGroup/delStudent', obj)
//随机分组
export const randomGroup = (obj, projectId) => http.post(`/admin/studentGroup/randomGroup/${projectId}`, obj)
// 更新考试分数
export const updateScore = (data)=> http.post('/admin/student/updateStudentScore', data)