From 776c124cbe17341d796bc00e7834a0e6066ad4f1 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期四, 26 六月 2025 14:25:03 +0800 Subject: [PATCH] 删除打印和路由跳转 --- laboratory/src/views/dataManagement/approvalPlan/components/approvalDialog.vue | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/laboratory/src/views/dataManagement/approvalPlan/components/approvalDialog.vue b/laboratory/src/views/dataManagement/approvalPlan/components/approvalDialog.vue index dd3de8d..1ca94cd 100644 --- a/laboratory/src/views/dataManagement/approvalPlan/components/approvalDialog.vue +++ b/laboratory/src/views/dataManagement/approvalPlan/components/approvalDialog.vue @@ -267,7 +267,6 @@ watch: { visible: { handler(val) { - console.log("visible", val, "22", this.data); if (val && this.data && this.data.id) { this.getDetail(this.data.id); } @@ -278,10 +277,8 @@ methods: { // 获取详情 getDetail(id) { - console.log("获取详情参数:", { id }); getDetailById({ id }) .then((res) => { - console.log("获取详情:", res); if (res) { this.form = { ...res, processData: [] }; // 组装流程数据 @@ -355,10 +352,8 @@ auditStatus: this.status === "1" ? 2 : 3, // 2-已通过,3-已驳回 auditRemark: this.remark, }; - console.log('审批请求参数:', params); audit(params) .then((res) => { - console.log('审批返回结果:', res); if (res.code === 200) { this.$message.success("审批成功"); this.$emit("update:visible", false); -- Gitblit v1.7.1