diff --git a/src/components/menu.vue b/src/components/menu.vue index b1fa424984f3dbfe03cceac5cca75be7656f0311..57415b047453c7a3acbb806d6e7c48142dc4f5cc 100644 --- a/src/components/menu.vue +++ b/src/components/menu.vue @@ -171,8 +171,8 @@ export default { methods: { gotopage(n) { if (n == "logout") { - window.location.href = - "/iam/api/logout?ReturnUrl=/apaas/ui/#" + this.$route.path; + let path = this.$route.path; + window.location.href = "/iam/api/logout?ReturnUrl=" + path; } else { this.$router.push(n); }