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