diff --git a/frontend/src/components/Overview/TaskOverview.vue b/frontend/src/components/Overview/TaskOverview.vue index 8cd05d1d..762d64c5 100644 --- a/frontend/src/components/Overview/TaskOverview.vue +++ b/frontend/src/components/Overview/TaskOverview.vue @@ -70,11 +70,11 @@ export default { }, methods: { onNavigateToSpider () { - this.$router.push(`/nodes/${this.nodeForm._id}`) + this.$router.push(`/spiders/${this.spiderForm._id}`) this.$st.sendEv('任务详情', '概览', '点击节点详情') }, onNavigateToNode () { - this.$router.push(`/spiders/${this.spiderForm._id}`) + this.$router.push(`/nodes/${this.nodeForm._id}`) this.$st.sendEv('任务详情', '概览', '点击爬虫详情') } },