24 lines
1.4 KiB
JavaScript
24 lines
1.4 KiB
JavaScript
|
|
import { POST, GET } from './index'
|
||
|
|
|
||
|
|
// 领料数据
|
||
|
|
export const getMaterialReqDataApi = params => POST(`/base/largeScreen/home/getMaterialReqData`,)
|
||
|
|
// 退料数据
|
||
|
|
export const getMaterialReturnDataApi = params => POST(`/base/largeScreen/home/getMaterialReturnData`)
|
||
|
|
//当月报废分析
|
||
|
|
export const getScrapAnalysisByMonthApi = params => POST(`/base/largeScreen/home/getScrapAnalysisByMonth?maType=${params.maType}`)
|
||
|
|
//新购验收入库分析
|
||
|
|
export const getAcceptanceStorageApi = params => POST(`/base/largeScreen/home/getAcceptanceStorage?maType=${params.maType}`,)
|
||
|
|
//当月领料分析
|
||
|
|
export const getPickingAnalysisByMonthApi = params => POST(`/base/largeScreen/home/getPickingAnalysisByMonth?maType=${params.maType}`,)
|
||
|
|
//当月退料分析
|
||
|
|
export const getMaterialReturnByMonthApi = params => POST(`/base/largeScreen/home/getMaterialReturnByMonth?maType=${params.maType}`,)
|
||
|
|
//当月维修分析
|
||
|
|
export const getMaintenanceByMonthApi = params => POST(`/base/largeScreen/home/getMaintenanceByMonth?maType=${params.maType}`,)
|
||
|
|
//设备分布图
|
||
|
|
export const getEquipmentDisByMapApi = params => POST(`/base/largeScreen/home/getEquipmentDisByMap`,)
|
||
|
|
//施工机具/
|
||
|
|
export const getTotalOwnershipApi = params => POST(`/base/largeScreen/home/getTotalOwnership`,)
|
||
|
|
// 当月使用车辆
|
||
|
|
export const getCarUseByMonthApi = params => POST(`/base/largeScreen/home/getCarUseByMonth?maType=${params.maType}`,)
|
||
|
|
|