From bedc4b0d454a147bd3d9c8cb3a877db5a07a4e06 Mon Sep 17 00:00:00 2001 From: shijing Date: Wed, 3 Dec 2025 09:32:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=8E=BB=E7=BA=A4=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E5=AD=90=E5=B7=A5=E5=BA=8F=E6=96=B0=E5=A2=9E=E6=97=B6=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/mlog_detail.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/wpm_bx/mlog_detail.vue b/src/views/wpm_bx/mlog_detail.vue index 1c4fa3d8..00475a9f 100644 --- a/src/views/wpm_bx/mlog_detail.vue +++ b/src/views/wpm_bx/mlog_detail.vue @@ -882,7 +882,8 @@ export default { saveMuserSubmit(row){ let that = this; that.isSaveing = true; - that.$API.wpm.mloguser.create.req(that.addTemplate).then((res) => { + row.mlog = that.mlogId; + that.$API.wpm.mloguser.create.req(row).then((res) => { that.isSaveing = false; that.$message.success("操作成功"); that.getProcessList(); @@ -895,7 +896,7 @@ export default { that.$confirm("确定删除吗?").then(res=>{ that.$API.wpm.mloguser.delete.req(row.id).then((res) => { that.$message.success("删除成功"); - that.$refs.tableMuser.refresh(); + that.getProcessList(); }) }) },