| | |
| | | import axiosInstance from './request'; |
| | | |
| | | // 员工产品统计TOP10 |
| | | // 查询企业全部公司部门 |
| | | export function getDepartmentList (companyId) { |
| | | return axiosInstance.get(`statistics/getDepartmentList/${companyId}`) |
| | | } |
| | | |
| | | // 数据统计-成品计划,执行中、延期计划数、今日生产人数、今日生产设备数、今日不良品 |
| | | export function getProcedurePlanData (companyId, departId, params) { |
| | | return axiosInstance.get(`statistics/getProcedurePlanData/${companyId}/${departId}`, {params} ) |
| | | } |
| | | |
| | | // 员工产品统计TOP10 |
| | | export function getTop (companyId, departId, params) { |
| | | return axiosInstance.get(`statistics/userProduceTop/${companyId}/${departId}`, {params}) |
| | | } |