This commit is contained in:
yaojian
2026-03-06 16:03:27 +08:00
parent 40024afcc4
commit b352145e4f
4 changed files with 401 additions and 55 deletions

View File

@@ -32,7 +32,7 @@ export const importComment = (file: File) => {
const formData = new FormData();
formData.append('file', file);
return request({
url: '/ems/emsqualityreport/importComment',
url: '/ems/file/importStudentComment',
method: 'post',
data: formData,
headers: {
@@ -47,7 +47,7 @@ export const importComment = (file: File) => {
*/
export const setClassStartTime = (data: any) => {
return request({
url: '/ems/emsqualityreport/setClassStartTime',
url: '/ems/emsopenschooltime/edit',
method: 'post',
data
});
@@ -66,3 +66,14 @@ export const exportExcel = (query?: any) => {
});
};
/**
* 导出学生评语模板
*/
export const exportStudentCommentTemplate = () => {
return request({
url: '/ems/file/exportStudentCommentTemplate',
method: 'get',
responseType: 'blob'
});
};