feat(wms): 添加实际库区管理功能及相关组件

- 新增实际库区API接口文件
- 添加实际库区选择组件ActualWarehouseSelect
- 在钢卷管理页面中集成实际库区字段
- 创建实际库区管理页面实现CRUD功能
- 修改钢卷列表查询接口添加dataType参数
This commit is contained in:
砂糖
2025-11-03 14:20:58 +08:00
parent 07c8ccbcdd
commit 325566e118
5 changed files with 553 additions and 5 deletions

View File

@@ -147,7 +147,7 @@ export default {
};
// 调用API获取数据
listMaterialCoil(params).then(res => {
listMaterialCoil({ ...params, dataType: 1 }).then(res => {
this.list = res.rows || [];
this.total = res.total || 0;
this.loading = false;