规程添加绑定功能

This commit is contained in:
2026-05-13 13:56:19 +08:00
parent dce80a225b
commit 5e3d0f0c00
11 changed files with 1110 additions and 33 deletions

View File

@@ -33,6 +33,14 @@ export function getTimingSegByEncoilId(encoilId) {
})
}
// 计划详情 + SEG 实绩合并,后端一次返回,避免前端二次请求
export function getPlanWithSeg(encoilId) {
return request({
url: '/sql-server-api/plans-with-seg/' + encoilId,
method: 'get'
})
}
export function getTimingSegByHotcoilId(encoilId) {
return request({
url: '/sql-server-api/seg-by-hotcoil/' + encoilId,

View File

@@ -15,3 +15,7 @@ export function countProcessCoilRecord(versionId) {
export function upsertProcessCoilRecord(data) {
return request({ url: '/wms/processCoilRecord/upsert', method: 'post', data })
}
export function batchRebindCoilRecord(data) {
return request({ url: '/wms/processCoilRecord/batchRebind', method: 'post', data })
}

View File

@@ -42,3 +42,4 @@ export function delProcessSpec(specId) {
method: 'delete'
})
}