学员成绩管理条件查询

This commit is contained in:
2026-08-26 16:12:39 +08:00
parent ebbbd5fb01
commit 2c4cc2aaaf
2 changed files with 77 additions and 33 deletions
@@ -45,7 +45,7 @@ export function delStudentRecord(bh) {
})
}
// 分页查询学员课程成绩(xybh 学员编号必传;nd 年度可选)
// 分页查询学员课程成绩(kcbh/xydbh/xh/nd 查询)
export function listStudentGrades(query) {
return request({
url: '/student-records/grades',
@@ -54,7 +54,7 @@ export function listStudentGrades(query) {
})
}
// 分页查询学员课程过程成绩(xybh 学员编号必传;nd 年度可选)
// 分页查询学员课程过程成绩(kcbh/xydbh/xh/nd 查询)
export function listStudentProcessGrades(query) {
return request({
url: '/student-records/process-grades',
@@ -63,22 +63,22 @@ export function listStudentProcessGrades(query) {
})
}
// 导出学员课程成绩 Excel(xybh 学员编号必传)
export function exportStudentGrades(xybh) {
// 导出学员课程成绩 Excel(kcbh/xydbh/xh/nd 查询)
export function exportStudentGrades(query) {
return request({
url: '/student-records/export-grades',
method: 'get',
params: { xybh: xybh },
params: query,
responseType: 'blob'
})
}
// 导出学员课程过程成绩 Excel(xybh 学员编号必传)
export function exportStudentProcessGrades(xybh) {
// 导出学员课程过程成绩 Excel(kcbh/xydbh/xh/nd 查询)
export function exportStudentProcessGrades(query) {
return request({
url: '/student-records/export-process-grades',
method: 'get',
params: { xybh: xybh },
params: query,
responseType: 'blob'
})
}