feat(annealPlan): 添加钢卷绑定信息更新功能并优化界面

- 新增updateAnnealPlanCoil API用于更新钢卷绑定信息
- 移除加入计划按钮的状态限制
- 将实际库位改为钢卷去向选择器并添加钢卷层级输入
- 实现钢卷信息变更自动保存功能
- 按层级排序钢卷列表
- 完善完成处理时的库位校验逻辑
This commit is contained in:
砂糖
2026-03-17 09:48:17 +08:00
parent 0aee6cecaa
commit 347ec849ae
2 changed files with 35 additions and 10 deletions

View File

@@ -96,3 +96,14 @@ export function unbindAnnealPlanCoil(data) {
data: data
})
}
/**
* 更新钢卷绑定信息
*/
export function updateAnnealPlanCoil(data) {
return request({
url: '/wms/furnacePlanCoil',
method: 'put',
data: data
})
}