酸扎停机集成

This commit is contained in:
2026-05-09 17:01:23 +08:00
parent 41d561f2f6
commit 5b77ae8149
6 changed files with 373 additions and 5 deletions

View File

@@ -75,6 +75,24 @@ export function getRollHistoryList(page = 1, pageSize = 50, rollId, standId) {
})
}
// 停机记录列表
export function getStoppageList(page = 1, pageSize = 50, { area, stopType, startDate, endDate } = {}) {
return request({
url: '/sql-server-api/stoppages',
method: 'get',
params: { page, pageSize, area, stopType, startDate, endDate }
})
}
// 停机记录总条数
export function getStoppageCount({ area, stopType, startDate, endDate } = {}) {
return request({
url: '/sql-server-api/stoppages/count',
method: 'get',
params: { area, stopType, startDate, endDate }
})
}
// 换辊历史总条数
export function getRollHistoryCount(rollId, standId) {
return request({