二级后端添加数据快照修正

This commit is contained in:
2026-01-15 18:37:39 +08:00
parent 3c4e60bc49
commit eed35addb5
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import request from '@/utils/request'
// 获取当前生产中的计划信息
export function getCurrentPlan() {
return request({
url: '/api/business/dashboard/currentPlan',
method: 'get',
baseUrl: 'http://140.143.206.120:10082/prod-api'
})
}
// 获取当前生产卷的关键工艺参数
export function getCurrentProcess() {
return request({
url: '/api/business/dashboard/currentProcess',
method: 'get',
baseUrl: 'http://140.143.206.120:10082/prod-api'
})
}