Files
td_official/src/api/enterpriseLarge/index.ts
2025-09-09 22:34:40 +08:00

45 lines
754 B
TypeScript

import request from '@/utils/request';
import { AxiosPromise } from 'axios';
/**
* 查询企业关键指标
*/
export const keyIndex = () => {
return request({
url: '/enterprise/big/screen/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'
});
};