fix:领料不合格不显示
This commit is contained in:
parent
37eeb45242
commit
8c7b900af0
|
@ -232,9 +232,12 @@ export default {
|
|||
let that = this;
|
||||
let obj = {};
|
||||
obj.page = 0;
|
||||
obj.state = 10;
|
||||
obj.material = that.form.material;
|
||||
this.$API.inm.warehouse.batch.req(obj).then((res) => {
|
||||
this.batchOptions = res;
|
||||
this.batchOptions = res.filter((item) => {
|
||||
return item.state == 10;
|
||||
});
|
||||
});
|
||||
},
|
||||
scanClose(data){
|
||||
|
|
Loading…
Reference in New Issue