This commit is contained in:
dhr
2025-09-09 22:34:40 +08:00
parent 78de3276d3
commit 65ff68673c
4 changed files with 550 additions and 99 deletions

View File

@ -11,3 +11,34 @@ export const keyIndex = () => {
method: 'get'
});
};
/**
* 每个项目的出勤人数
*/
export const projectAttendanceCount = () => {
return request({
url: '/enterprise/big/screen/projectAttendanceCount',
method: 'get'
});
};
/**
* 人数统计
*/
export const peopleCount = () => {
return request({
url: '/enterprise/big/screen/peopleCount',
method: 'get'
});
};
/**
* 出勤人数统计
*/
export const allAttendanceCount = () => {
return request({
url: '/enterprise/big/screen/allAttendanceCount',
method: 'get'
});
};