From 6d25f7ecc3b347394ca8471c7703dde0186c423f Mon Sep 17 00:00:00 2001 From: shijing Date: Wed, 19 Mar 2025 15:11:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:mlogbw=5Fcheck=E4=B8=AD=E6=A3=80=E9=AA=8C?= =?UTF-8?q?=E5=B7=A5=E5=BA=8F=E7=9A=84=E6=A3=80=E9=AA=8C=E4=BA=BA=EF=BC=8C?= =?UTF-8?q?=E8=AE=BE=E5=A4=87=E4=B8=8D=E7=B2=BE=E5=87=86=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/mlog_detail.vue | 1 + src/views/wpm_bx/mlogbw_check.vue | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/wpm_bx/mlog_detail.vue b/src/views/wpm_bx/mlog_detail.vue index 7b1ce139..da41e6d6 100644 --- a/src/views/wpm_bx/mlog_detail.vue +++ b/src/views/wpm_bx/mlog_detail.vue @@ -289,6 +289,7 @@ ref="checkDialogSingle" :mlogb="mlogb" :wm = "wm" + :dept="deptId" :mgroup="mgroup" :mgroupName= "mlogItem.mgroup_name" :isSubmit="isSubmit" diff --git a/src/views/wpm_bx/mlogbw_check.vue b/src/views/wpm_bx/mlogbw_check.vue index 480d0299..6b0927c3 100644 --- a/src/views/wpm_bx/mlogbw_check.vue +++ b/src/views/wpm_bx/mlogbw_check.vue @@ -359,6 +359,10 @@ export default { type:String, default:"", }, + dept:{ + type:String, + default:"", + }, isSubmit:{ type: Boolean, default: false, @@ -465,7 +469,7 @@ export default { }, getEquipments(){ let that = this; - that.$API.em.equipment.list.req({page:0}).then((res) => { + that.$API.em.equipment.list.req({page:0,cate__code:"6"}).then((res) => { that.equipmentOptions = res; }) },