课时统计功能提交

This commit is contained in:
2026-09-24 14:08:44 +08:00
parent d9f8bf705d
commit bd395a5504
5 changed files with 135 additions and 0 deletions
+9
View File
@@ -12,6 +12,15 @@ export function listHourStatistics(query) {
})
}
// 课时核算:按自然年聚合已排课次生成课时统计表(覆盖该年,仅教务)
export function recalcHourStatistics(year) {
return request({
url: '/ks/hour-stat/recalculate',
method: 'post',
params: year != null ? { year } : {}
})
}
// 导出课时统计 Excel(返回 Blob,文件名 课时统计.xlsx)
export function exportHourStatistics(query) {
return request({