酸轧数据同步,轧辊新增产线新增各种产线

This commit is contained in:
2026-05-14 15:12:30 +08:00
parent 4a5b9544a4
commit 49561a125e
41 changed files with 2054 additions and 319 deletions

View File

@@ -1,11 +1,11 @@
import request from '@/utils/request'
// 查询指定机架下批轧辊列表
export function listRollStandby(standNo) {
// 查询指定产线+机架下批轧辊列表
export function listRollStandby(lineId, standNo) {
return request({
url: '/mes/rollStandby/list',
method: 'get',
params: { standNo }
params: { lineId, standNo }
})
}
@@ -43,11 +43,11 @@ export function delRollStandby(standbyId) {
})
}
// 清空指定机架全部下批轧辊
export function clearRollStandby(standNo) {
// 清空指定产线+机架全部下批轧辊
export function clearRollStandby(lineId, standNo) {
return request({
url: '/mes/rollStandby/clear',
method: 'delete',
params: { standNo }
params: { lineId, standNo }
})
}