Files
klp-mono/apps/hand-factory/api/business/dashboard.js

19 lines
407 B
JavaScript
Raw Normal View History

2026-01-15 20:18:37 +08:00
import zinc1Request from '@/utils/zinc1Request'
2026-01-15 18:37:39 +08:00
// 获取当前生产中的计划信息
export function getCurrentPlan() {
2026-01-15 20:18:37 +08:00
return zinc1Request({
2026-01-15 18:37:39 +08:00
url: '/api/business/dashboard/currentPlan',
2026-01-15 20:18:37 +08:00
method: 'get'
2026-01-15 18:37:39 +08:00
})
}
// 获取当前生产卷的关键工艺参数
export function getCurrentProcess() {
2026-01-15 20:18:37 +08:00
return zinc1Request({
2026-01-15 18:37:39 +08:00
url: '/api/business/dashboard/currentProcess',
2026-01-15 20:18:37 +08:00
method: 'get'
2026-01-15 18:37:39 +08:00
})
}