18 lines
846 B
JavaScript
18 lines
846 B
JavaScript
import {post} from './http.js'
|
|
// 原料库存
|
|
export const inventoryAnalysis = () => post('api/bigScreen/inventoryAnalysis', {})
|
|
// 当日出入
|
|
export const inventoryIOAnalysis = () => post('api/bigScreen/inventoryIOAnalysis', {})
|
|
// 历史分析
|
|
export const historyInventoryIOAnalysis = () => post('api/bigScreen/historyInventoryIOAnalysis', {})
|
|
// 当日生产统计
|
|
export const todayProduceStatistic = () => post('api/bigScreen/todayProduceStatistic', {})
|
|
// 当日车间上下料
|
|
export const todayLoadingAndUnloadingStatistics = () => post('api/bigScreen/todayLoadingAndUnloadingStatistics', {})
|
|
// 当日搬运任务
|
|
export const todayTask = () => post('api/bigScreen/todayTask', {})
|
|
// AGV信息
|
|
export const agvInfo = () => post('api/bigScreen/agvInfo', {})
|
|
// RGV信息
|
|
export const rgvInfo = () => post('api/bigScreen/rgvInfo', {})
|