停机时长修复

This commit is contained in:
2026-05-11 15:44:37 +08:00
parent dcb5f9525e
commit 7b1827ed83
8 changed files with 1633 additions and 389 deletions

View File

@@ -117,3 +117,28 @@ export function getRollHistoryCount(rollId, standId) {
params: { rollId, standId }
})
}
// 出口卷实绩列表分页PLTCM_PDO_EXCOIL
export function getExcoilList(page = 1, pageSize = 50) {
return request({
url: '/sql-server-api/excoil',
method: 'get',
params: { page, pageSize }
})
}
// 出口卷实绩总数
export function getExcoilCount() {
return request({
url: '/sql-server-api/excoil/count',
method: 'get'
})
}
// 工艺预设参数按计划钢卷号查询PLTCM_PRESET_SETUP
export function getPresetSetupByCoilId(coilId) {
return request({
url: '/sql-server-api/preset-setup/' + coilId,
method: 'get'
})
}