fix:修改 project module endpoint 的路由

This commit is contained in:
zhangyu
2022-03-23 18:08:00 +08:00
parent 34a6a92031
commit bd259fd291
5 changed files with 13 additions and 13 deletions

View File

@@ -160,7 +160,7 @@ export default {
},
jumpModule (row) {
localStorage.setItem('moduleProjectId', JSON.stringify([row.id, row.name]))
this.$router.push({ path: '/monitor/module' })
this.$router.push({ path: '/module' })
},
jumpAlertMessage (row) {
localStorage.setItem('alertMessageProjectId', row.id)
@@ -168,7 +168,7 @@ export default {
},
jumpEndpoint (row) {
localStorage.setItem('endpointProjectId', row.id)
this.$router.push({ path: '/monitor/endpoint' })
this.$router.push({ path: '/endpoint' })
}
},
computed: {