From 843d421107006d38c9af61c956a3ed30275a5657 Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期四, 25 四月 2024 09:13:37 +0800 Subject: [PATCH] 修改报告按钮逻辑 --- src/components/view/notice-detail.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/view/notice-detail.vue b/src/components/view/notice-detail.vue index 65e5518..bcea964 100644 --- a/src/components/view/notice-detail.vue +++ b/src/components/view/notice-detail.vue @@ -16,8 +16,8 @@ </div> </div> <div class="info-box" v-if="noticeInfo.jumpPath"> - <component class="notice-content" :is="noticeInfo.jumpPath" style="height: 500px;" > - </component> + <!-- <component class="notice-content" :is="noticeInfo.jumpPath" style="height: 500px;" > + </component> --> </div> </div> </template> @@ -47,6 +47,7 @@ this.noticeInfo = JSON.parse(sessionStorage.getItem("noticeInfo")); this.$bus.$on("change", (msg) => { this.noticeInfo = JSON.parse(msg); + console.log(this.noticeInfo); sessionStorage.setItem("noticeInfo", msg); }); }, -- Gitblit v1.9.3