Files
klp-oa/klp-ui/src/api/lines/zinc/dashboard.js

19 lines
399 B
JavaScript
Raw Normal View History

import zinc1Request from '@/utils/zinc1Request'
// 获取当前生产中的计划信息
export function getCurrentPlan() {
return zinc1Request({
url: '/business/dashboard/currentPlan',
method: 'get'
})
}
// 获取当前生产卷的关键工艺参数
export function getCurrentProcess() {
return zinc1Request({
url: '/business/dashboard/currentProcess',
method: 'get'
})
}