You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
447 B
23 lines
447 B
|
1 week ago
|
import request from '@/axios';
|
||
|
|
|
||
|
|
// 排产看板数据
|
||
|
|
export const getData = row => {
|
||
|
|
return request({
|
||
|
|
url: '/blade-scheduling/workOrder/schedulingBoard',
|
||
|
|
method: 'post',
|
||
|
|
data: row,
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
// 排产异常数据
|
||
|
|
export const getYieldOrderList = (current, size, params) => {
|
||
|
|
return request({
|
||
|
|
url: '/blade-scheduling/yieldOrder/page',
|
||
|
|
method: 'get',
|
||
|
|
params: {
|
||
|
|
...params,
|
||
|
|
current,
|
||
|
|
size,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
};
|