From 8c7b900af0cf8f8ab944a30ee1bed01fc8984654 Mon Sep 17 00:00:00 2001 From: shijing Date: Fri, 7 Feb 2025 15:19:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=A2=86=E6=96=99=E4=B8=8D=E5=90=88?= =?UTF-8?q?=E6=A0=BC=E4=B8=8D=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/inm_record_form.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/wpm_bx/inm_record_form.vue b/src/views/wpm_bx/inm_record_form.vue index cdac687e..33dde6c8 100644 --- a/src/views/wpm_bx/inm_record_form.vue +++ b/src/views/wpm_bx/inm_record_form.vue @@ -232,10 +232,13 @@ 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){ let that = this;