Merge pull request #1058 from dataease/dev

Dev
This commit is contained in:
王嘉豪 2021-10-29 13:52:04 +08:00 committed by GitHub
commit 21045fbee0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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)
})

View File

@ -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)
},