fix:mlogbw_check中检验工序的检验人,设备不精准的问题

This commit is contained in:
shijing 2025-03-19 15:11:51 +08:00
parent 3328779916
commit 6d25f7ecc3
2 changed files with 6 additions and 1 deletions

View File

@ -289,6 +289,7 @@
ref="checkDialogSingle" ref="checkDialogSingle"
:mlogb="mlogb" :mlogb="mlogb"
:wm = "wm" :wm = "wm"
:dept="deptId"
:mgroup="mgroup" :mgroup="mgroup"
:mgroupName= "mlogItem.mgroup_name" :mgroupName= "mlogItem.mgroup_name"
:isSubmit="isSubmit" :isSubmit="isSubmit"

View File

@ -359,6 +359,10 @@ export default {
type:String, type:String,
default:"", default:"",
}, },
dept:{
type:String,
default:"",
},
isSubmit:{ isSubmit:{
type: Boolean, type: Boolean,
default: false, default: false,
@ -465,7 +469,7 @@ export default {
}, },
getEquipments(){ getEquipments(){
let that = this; 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; that.equipmentOptions = res;
}) })
}, },