feat(发货计划): 新增钢卷选择功能并优化界面布局

- 在发货计划页面添加钢卷选择器组件,支持从列表中选择钢卷
- 优化发货计划卡片布局,增加审批状态显示
- 新增钢卷列表查询API接口
- 调整分页大小和查询条件
- 重构CoilSelector组件,增加更多钢卷信息展示
- 添加钢卷转移组件框架
This commit is contained in:
砂糖
2025-12-08 15:17:56 +08:00
parent d1b722b672
commit 40452d513e
5 changed files with 275 additions and 107 deletions

View File

@@ -135,4 +135,15 @@ export function exportCoil(coilId) {
url: '/wms/materialCoil/exportCoil/' + coilId,
method: 'get'
})
}
// 根据钢卷ID序列查询钢卷列表
export function listCoilByIds(coilIds) {
return request({
url: '/wms/materialCoil/list',
method: 'get',
params: {
coilIds
}
})
}