From 5191c332ee7522fe550f033654578286d8bf4c64 Mon Sep 17 00:00:00 2001 From: lihui Date: Sat, 26 Jul 2025 10:28:32 +0800 Subject: [PATCH] =?UTF-8?q?fix(login):=20=E4=BF=AE=E6=AD=A3=E6=97=A0?= =?UTF-8?q?=E6=9D=83=E9=99=90=E6=97=B6=E7=9A=84=E9=87=8D=E5=AE=9A=E5=90=91?= =?UTF-8?q?=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/login.vue b/src/views/login.vue index b77bf3c..f5dcde0 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -65,7 +65,7 @@ const login = async function () { // 获取第一个可访问的菜单 const firstMenu = findFirstAccessibleMenu(filteredMenu) // 获取第一个可访问的菜单的 path - const redirectPath = firstMenu ? getRoutePath(firstMenu) : '/noPermissionPage' + const redirectPath = firstMenu ? getRoutePath(firstMenu) : '/noPermission' // 跳转 router.push(redirectPath)