feat(发货单): 添加批量新增发货单明细功能

- 新增批量新增发货单明细API接口
- 在发货单明细表格中添加批量新增按钮
- 改造CoilSelector组件支持多选功能
- 将表单中的输入框改为下拉选择框提升用户体验
This commit is contained in:
砂糖
2026-01-29 10:16:36 +08:00
parent 353cfd0089
commit c1cfcfdeca
3 changed files with 162 additions and 32 deletions

View File

@@ -42,3 +42,12 @@ export function delDeliveryWaybillDetail(detailId) {
method: 'delete'
})
}
// 批量新增发货单明细
export function batchAddDeliveryWaybillDetail(data) {
return request({
url: '/wms/deliveryWaybillDetail/batch',
method: 'post',
data: data
})
}