feat: 添加空置库选项和打印标签功能

- 在WarehouseTree组件中添加showEmpty属性以显示空置库选项
- 在DrillDownTable和search组件中传递showEmpty属性
- 在base面板中添加打印标签功能
- 在correct页面添加创建人选择功能
- 在receive报表页面添加收货计划筛选功能
This commit is contained in:
砂糖
2026-01-12 15:32:09 +08:00
parent c19fee0909
commit b35d739e08
7 changed files with 72 additions and 18 deletions

View File

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