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(); }) }) },