feat(排产单): 新增排产单追踪页面和钢卷列表查询功能

- 添加排产单追踪页面,展示排产单详情和对应钢卷信息
- 新增listPlanCoils接口用于查询排产单对应的钢卷列表
- 在PlanSheetList组件中添加readonly属性控制操作按钮显示
- 优化CoilTable组件中钢卷号的列名显示
This commit is contained in:
2026-04-27 18:36:23 +08:00
parent b85971d532
commit 5b38ef734a
4 changed files with 541 additions and 7 deletions

View File

@@ -42,3 +42,11 @@ export function delPlanDetail(planDetailId) {
method: 'delete'
})
}
// 查询排产单对应的钢卷列表
export function listPlanCoils(planSheetId) {
return request({
url: '/aps/planDetail/coils/' + planSheetId,
method: 'get',
})
}