From 69f2de445048b7296bc035aae796960633704aec Mon Sep 17 00:00:00 2001 From: liudianxin Date: Mon, 15 Jun 2020 16:49:25 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=87=BA=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/menu.vue b/src/components/menu.vue index b1fa424..57415b0 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); } -- 2.26.0