pengwei
2025-03-07 5bc75025dfa855271a21085e22fc5dfee24472a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import http from "./http";
 
 
//物料类型统计
export const GetGoodsTypeDistApi = () => http.post('api/HomePage/GetGoodsTypeDist')
 
//发货数据统计
export const GetDeliverDistApi = () => http.post('api/HomePage/GetDeliverDist')
 
//获取维保记录
export const GetMaintenanceDistApi = () => http.post('api/HomePage/GetMaintenanceDist')
 
//获取装配单统计
export const GetAssembleDistApi = () => http.post('api/HomePage/GetAssembleDist')
 
//获取代操作数据统计
export const GetOperationDistApi = () => http.post('api/HomePage/GetOperationDist')
 
//获取物料数据来源
export const GetGoodsSourceDistApi = (data) => http.post('api/HomePage/GetGoodsSourceDist?sourceId='+data)
 
//获取看板数据
//获取代操作数据统计
export const GetSumCountsApi = () => http.post('api/HomePage/GetSumCounts')