tijaodaim

This commit is contained in:
2026-02-07 15:12:49 +08:00
18 changed files with 1097 additions and 968 deletions

View File

@@ -28,3 +28,16 @@ export const fetchList = (query?: any) => {
params: query,
});
};
/**
* 下载任务文件
* @param data 如 { id: 任务id }
*/
export const downloadTaskFile = (data?: any) => {
return request({
url: '/basic/basicAsyncTask/downloadTaskFile',
method: 'post',
data: data,
responseType: 'blob',
});
};

View File

@@ -7,4 +7,12 @@ export const makeExportTeacherInfoBySelfTask = (data?: any) => {
method: 'post',
data: data,
});
};
};
export const makeExportTeacherInfoByTypeTask = (data?: any) => {
return request({
url: '/professional/file/makeExportTeacherInfoByTypeTask',
method: 'post',
data: data,
});
};

View File

@@ -138,16 +138,3 @@ export const titleCountInfo = () => {
});
};
/**
* 导出Excel
* @param data 查询参数
*/
export const exportRelation = (data: any) => {
return request({
url: '/professional/professionaltitlerelation/exportRelation',
method: 'post',
data: data,
responseType: 'blob',
});
};