每周计划日卫生月卫生新增统计

This commit is contained in:
yaojian
2026-03-12 18:32:54 +08:00
parent ff2023709b
commit d9f7f85422
6 changed files with 340 additions and 23 deletions

View File

@@ -96,3 +96,16 @@ export function validateExist(rule: any, value: any, callback: any, isEdit: bool
}
});
}
/**
* 获取日卫生学年学期统计
* @param {Object} [query] - 查询参数schoolYear, schoolTerm
* @returns {Promise} 请求的 Promise 对象。
*/
export function summary(query?: Object) {
return request({
url: '/stuwork/classRoomHygieneDaily/summary',
method: 'get',
params: query,
});
}

View File

@@ -57,3 +57,16 @@ export const importData = (data: FormData) => {
},
});
};
/**
* 获取月卫生学年学期统计
* @param {Object} [query] - 查询参数schoolYear, schoolTerm
* @returns {Promise} 请求的 Promise 对象。
*/
export const monthlySummaryByYearTerm = (query?: Object) => {
return request({
url: '/stuwork/classroomhygienemonthly/monthlySummaryByYearTerm',
method: 'get',
params: query,
});
};

View File

@@ -96,3 +96,16 @@ export function validateExist(rule: any, value: any, callback: any, isEdit: bool
}
});
}
/**
* 获取班级班主任查看状况统计
* @param {Object} [query] - 查询参数schoolYear, schoolTerm
* @returns {Promise} 请求的 Promise 对象。
*/
export function readStatistics(query?: Object) {
return request({
url: '/stuwork/weekPlan/readStatistics',
method: 'get',
params: query,
});
}