This commit is contained in:
zhoutianchi
2026-02-27 15:07:35 +08:00
parent ab667f3cdd
commit 96d2d9b6e1
8 changed files with 61 additions and 20 deletions

View File

@@ -1,10 +1,19 @@
import request from '/@/utils/request';
export const makeExportTeacherInfoBySelfTask = (data?: any) => {
export const exportPreStuSuccess = (data?: any) => {
return request({
url: '/recruit/file/exportPreStuSuccess',
method: 'post',
data: data,
});
};
export const exportAdjustExcel = (data?: any) => {
return request({
url: '/recruit/file/exportAdjustExcel',
method: 'post',
data: data,
});
};