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/addPlan.vue | 10 ---------- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/laboratory/src/views/dataManagement/approvalPlan/addPlan.vue b/laboratory/src/views/dataManagement/approvalPlan/addPlan.vue index 868c75e..e006795 100644 --- a/laboratory/src/views/dataManagement/approvalPlan/addPlan.vue +++ b/laboratory/src/views/dataManagement/approvalPlan/addPlan.vue @@ -237,8 +237,6 @@ // 检查编辑器内容是否为空 const emptyFields = []; - console.log("editorContents", editorContents); - // 判断内容是否为空(排除<p></p>) const isEmptyContent = (content) => { return ( @@ -277,14 +275,8 @@ if (this.id) { formData.id = this.id; } - - console.log("请求参数:", { - formData, - }); - request(formData) .then((res) => { - console.log("接口返回:", res); if (res.code === 200) { const successMsg = type === "draft" @@ -335,10 +327,8 @@ // 获取详情 getDetail() { if (this.id) { - console.log("获取详情参数:", { id: this.id }); getDetailById({ id: this.id }) .then((res) => { - console.log("详情接口返回:", res); if (res) { const data = res; // 设置表单数据 -- Gitblit v1.7.1