diff --git a/frontend/src/components/canvas/components/Editor/PreviewEject.vue b/frontend/src/components/canvas/components/Editor/PreviewEject.vue index 9619635a98..976373206b 100644 --- a/frontend/src/components/canvas/components/Editor/PreviewEject.vue +++ b/frontend/src/components/canvas/components/Editor/PreviewEject.vue @@ -31,7 +31,7 @@ export default { this.$store.commit('setNowPanelTrackInfo', rsp.data) }) // 刷新跳转信息 - queryPanelJumpInfo(data.id).then(rsp => { + queryPanelJumpInfo(this.panelId).then(rsp => { this.$store.commit('setNowPanelJumpInfo', rsp.data) }) 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) },