From 7ca65ff2801bbd9c237921a935867b8f4e81e7b7 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Fri, 29 Oct 2021 13:47:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BB=AA=E8=A1=A8=E6=9D=BF=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E8=81=94=E5=8A=A8=E9=80=89=E9=A1=B9=E5=80=BC=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/panel/LinkJumpSet/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/panel/LinkJumpSet/index.vue b/frontend/src/views/panel/LinkJumpSet/index.vue index b6eb113884..74a57c7bf8 100644 --- a/frontend/src/views/panel/LinkJumpSet/index.vue +++ b/frontend/src/views/panel/LinkJumpSet/index.vue @@ -285,7 +285,7 @@ export default { if (!this.linkJumpInfo.content) { this.linkJumpInfo.content = 'http://' } - if (this.linkJumpInfo.linkType === 'inner' && this.linkJumpInfo.targetPanelId) { + if (this.linkJumpInfo.targetPanelId) { this.getPanelViewList(this.linkJumpInfo.targetPanelId) } }, @@ -302,7 +302,7 @@ export default { }) }, panelNodeClick(data, node) { - console.log('panelNodeClick:' + JSON.stringify(data)) + // console.log('panelNodeClick:' + JSON.stringify(data)) this.linkJumpInfo.targetViewInfoList = [] this.getPanelViewList(data.id) },