2023-12-16 18:10:04 +08:00
|
|
|
import { POST, GET } from './index'
|
|
|
|
|
|
|
|
|
|
// 领料数据
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getMaterialReqDataApi = params => POST(`/screen/base/largeScreen/home/getMaterialReqData`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
// 退料数据
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getMaterialReturnDataApi = params => POST(`/screen/base/largeScreen/home/getMaterialReturnData`)
|
2023-12-16 18:10:04 +08:00
|
|
|
//当月报废分析
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getScrapAnalysisByMonthApi = params => POST(`/screen/base/largeScreen/home/getScrapAnalysisByMonth?maType=${params.maType}`)
|
2023-12-16 18:10:04 +08:00
|
|
|
//新购验收入库分析
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getAcceptanceStorageApi = params => POST(`/screen/base/largeScreen/home/getAcceptanceStorage?maType=${params.maType}`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
//当月领料分析
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getPickingAnalysisByMonthApi = params => POST(`/screen/base/largeScreen/home/getPickingAnalysisByMonth?maType=${params.maType}`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
//当月退料分析
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getMaterialReturnByMonthApi = params => POST(`/screen/base/largeScreen/home/getMaterialReturnByMonth?maType=${params.maType}`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
//当月维修分析
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getMaintenanceByMonthApi = params => POST(`/screen/base/largeScreen/home/getMaintenanceByMonth?maType=${params.maType}`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
//设备分布图
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getEquipmentDisByMapApi = params => POST(`/screen/base/largeScreen/home/getEquipmentDisByMap`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
//施工机具/
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getTotalOwnershipApi = params => POST(`/screen/base/largeScreen/home/getTotalOwnership`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
// 当月使用车辆
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getCarUseByMonthApi = params => POST(`/screen/base/largeScreen/home/getCarUseByMonth?maType=${params.maType}`,)
|
2023-12-25 13:25:16 +08:00
|
|
|
// 当月使用车辆
|
2024-03-07 09:19:00 +08:00
|
|
|
export const getMaintenanceWarningApi = params => POST(`/screen/base/largeScreen/home/getMaintenanceWarning`,)
|
2023-12-16 18:10:04 +08:00
|
|
|
|