From 79c579c55e4972cd8976e9ee8f66edbde5160a6b Mon Sep 17 00:00:00 2001 From: caoqianming Date: Wed, 22 Apr 2026 12:48:33 +0800 Subject: [PATCH] Fix qct lookup type for mlogb input material --- src/views/wpm_gx/mlogb_form.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/wpm_gx/mlogb_form.vue b/src/views/wpm_gx/mlogb_form.vue index 62fb3959..2cc25c4a 100644 --- a/src/views/wpm_gx/mlogb_form.vue +++ b/src/views/wpm_gx/mlogb_form.vue @@ -400,7 +400,7 @@ export default { getdefects(material){ let that = this; // let material = that.is_fix?that.materialFix:that.materialIn; - that.$API.qm.qct.getQct.req({material: material,tag:'process'}).then((res) => { + that.$API.qm.qct.getQct.req({material: material,tag:'process',type:'in'}).then((res) => { res.qct_defects.forEach((item) => { that.defectform[item.defect_name] = 0; })