feat(钢卷选择器): 增加按实际库区筛选钢卷功能

在钢卷选择器中添加实际库区筛选功能,并调整对话框宽度以适应新增控件。修改了detailTable.vue中的调用参数以启用该功能。
This commit is contained in:
砂糖
2026-01-28 15:16:37 +08:00
parent 30d6530d9d
commit 1614358bbe
2 changed files with 16 additions and 3 deletions

View File

@@ -48,7 +48,9 @@
<el-form ref="form" :model="form" label-width="80px">
<el-form-item label="发货钢卷" prop="coilId">
<div style="display: flex; gap: 10px;">
<coil-selector v-model="form.coilId" :use-trigger="true" :filters="{ selectType: 'product', status: 0, excludeBound: true }" @select="handleSelect" />
<coil-selector v-model="form.coilId" :use-trigger="true"
:filters="{ selectType: 'product', status: 0, excludeBound: true, orderBy: true }"
@select="handleSelect" :orderBy="true" />
<el-checkbox v-model="autoFillForm" label="自动填写表单信息" />
</div>
</el-form-item>