fix:玻纤生产领料和入库时,选中物料时,数量默认所有

This commit is contained in:
shijing 2025-02-27 09:39:00 +08:00
parent 562dcba22a
commit 8a2372410e
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@
<el-select
v-model="form.batch"
filterable
style="width: 100%"
@change="selectwmChange"
>
<el-option
@ -309,6 +310,7 @@ export default {
that.wbatchOptions.forEach((item) => {
if (item.batch == val) {
that.form.material = item.material;
that.form.count = item.count;
}
})
},