This commit is contained in:
2026-01-15 01:15:07 +08:00
parent 8c1f4ec05e
commit 90b646297d
45 changed files with 62864 additions and 5820 deletions

View File

@@ -0,0 +1,35 @@
import request from '/@/utils/request';
/**
* 分页查询工学交替考勤列表
*/
export const fetchList = (query?: any) => {
return request({
url: '/stuwork/stuworkstudyalternate/page',
method: 'get',
params: query
});
};
/**
* 查询考勤记录
*/
export const queryHistoryList = (data: any) => {
return request({
url: '/stuwork/workstudyattendance/queryHistoryList',
method: 'post',
data
});
};
/**
* 提交考勤
*/
export const submitAttendance = (data: any[]) => {
return request({
url: '/stuwork/workstudyattendance',
method: 'post',
data
});
};