学员信息维护成绩表单展示

This commit is contained in:
2026-08-26 18:08:09 +08:00
parent 0877228043
commit 42e692fc8c
2 changed files with 113 additions and 29 deletions
@@ -45,7 +45,7 @@ export function delStudentRecord(bh) {
})
}
// 分页查询学员课程成绩(kcbh/xydbh/xh/nd 查询)
// 分页查询学员课程成绩(xybh/nd 查询)
export function listStudentGrades(query) {
return request({
url: '/student-records/grades',
@@ -54,7 +54,7 @@ export function listStudentGrades(query) {
})
}
// 分页查询学员课程过程成绩(kcbh/xydbh/xh/nd 查询)
// 分页查询学员课程过程成绩(xybh/nd 查询)
export function listStudentProcessGrades(query) {
return request({
url: '/student-records/process-grades',
@@ -63,7 +63,7 @@ export function listStudentProcessGrades(query) {
})
}
// 导出学员课程成绩 Excel(kcbh/xydbh/xh/nd 查询)
// 导出指定学员的课程成绩 Excel(xybh 必传)
export function exportStudentGrades(query) {
return request({
url: '/student-records/export-grades',
@@ -73,7 +73,7 @@ export function exportStudentGrades(query) {
})
}
// 导出学员课程过程成绩 Excel(kcbh/xydbh/xh/nd 查询)
// 导出指定学员的课程过程成绩 Excel(xybh 必传)
export function exportStudentProcessGrades(query) {
return request({
url: '/student-records/export-process-grades',
@@ -81,4 +81,4 @@ export function exportStudentProcessGrades(query) {
params: query,
responseType: 'blob'
})
}
}