From 1590c37b948f48facf7774784f2ce598ecbe8283 Mon Sep 17 00:00:00 2001 From: shijing Date: Wed, 2 Jul 2025 15:19:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:#803#861#40=E6=97=A5=E5=BF=97=EF=BC=8C?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E4=BB=BB=E5=8A=A1=E7=9A=84=E6=97=B6=E5=80=99?= =?UTF-8?q?=E6=8C=89=E5=B7=A5=E8=89=BA=E5=88=97=E4=B8=8B=E6=8B=89=E9=80=89?= =?UTF-8?q?=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/mlog_detail.vue | 4 ++-- src/views/wpm_bx/mlogb_form.vue | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/views/wpm_bx/mlog_detail.vue b/src/views/wpm_bx/mlog_detail.vue index bb51b750..63985a53 100644 --- a/src/views/wpm_bx/mlog_detail.vue +++ b/src/views/wpm_bx/mlog_detail.vue @@ -610,8 +610,8 @@ export default { that.form.test_file = res.test_file; } that.mgroup = res.mgroup; - that.paramsWm.mgroup = res.mgroup; - that.paramsWm.search = that.batchContains; + // that.paramsWm.mgroup = res.mgroup; + // that.paramsWm.search = that.batchContains; that.materialIn = res.material_in; that.deptId = res.belong_dept; that.apiObjWm = that.$API.wpm.wmaterial.list; diff --git a/src/views/wpm_bx/mlogb_form.vue b/src/views/wpm_bx/mlogb_form.vue index b86059fa..e0bbf03c 100644 --- a/src/views/wpm_bx/mlogb_form.vue +++ b/src/views/wpm_bx/mlogb_form.vue @@ -298,8 +298,14 @@ export default { }, //获取任务列表 getMtask() { + console.log(this.materialIn); let that = this; - this.$API.pm.mtask.list.req({ page: 0, mgroup: that.mgroup, state: 20 }).then((res) => { + let obj = {}; + obj.page = 0; + obj.state = 20; + obj.mgroup = that.mgroup; + obj.route__material_in = that.materialIn; + this.$API.pm.mtask.list.req(obj).then((res) => { that.options = res; }); },