Mr.Shi
2023-08-22 7d2873351fd9cca4c7b1117dafe59db4a546526f
1
2
3
4
5
6
7
8
9
10
11
import axiosInstance from './request';
 
// 员工产品统计TOP10
export function getTop (companyId, departId) {
    return axiosInstance.get(`statistics/userProduceTop/${companyId}/${departId}`)
}
 
// 成品计划-实时仓库余量统计
export function getStockList (companyId, departId) {
    return axiosInstance.get(`statistics/getStockList/${companyId}/${departId}`)
}