评优和安全教育功能

This commit is contained in:
yaojian
2026-03-02 16:12:23 +08:00
parent 755721a2c7
commit ffe3923cf2
4 changed files with 371 additions and 12 deletions

View File

@@ -73,3 +73,16 @@ export const exportExcel = (query?: any) => {
});
};
/**
* 按学年学期统计各班级安全教育次数
* @param schoolYear 学年
* @param schoolTerm 学期
*/
export const statisticsByYearTerm = (schoolYear?: string, schoolTerm?: string) => {
return request({
url: '/stuwork/classsafeedu/statistics',
method: 'get',
params: { schoolYear, schoolTerm }
});
};