You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
884 B
JavaScript

import request from '@/utils/request'
// 获取工厂下拉列表
export function getBoardFactory(data) {
return request({
url: '/mes/wcsInterface/getBoardFactory',
method: 'post',
data: data
});
}
// 根据工厂获取产线
export function getDictData(data) {
return request({
url: '/mes/mesborad/getLineList',
method: 'get',
params: data
});
}
// 41、计划产量、当前产量、15天的产量趋势图
export function getProduction15Days(data) {
return request({
url: '/mes/mesborad/getProduction15Days',
method: 'post',
data: data
});
}
// 产线信息
export function getProductionLineInfo(data) {
return request({
url: '/mes/mesborad/getProductionLineInfo',
method: 'post',
data: data
});
}
// 产线信息
export function getPorOrderList(data) {
return request({
url: '/mes/mesborad/getPorOrderList',
method: 'post',
data: data
});
}