From 54ef36700435d541a1154503b14f25ad984f6f90 Mon Sep 17 00:00:00 2001 From: zhouwenxuan <1175765986@qq.com> Date: 星期二, 05 九月 2023 13:21:29 +0800 Subject: [PATCH] 实时监控页面 --- src/router/index.ts | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index a99e192..efe48a5 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -78,13 +78,14 @@ next(`/login?redirect=${to.path}¶ms=${JSON.stringify(to.query ? to.query : to.params)}`); Session.clear(); NProgress.done(); + // next() } else if (token && to.path === '/login') { - next('/home'); + next('/bigScreen'); NProgress.done(); } else { const storesRoutesList = useRoutesList(pinia); const { routesList } = storeToRefs(storesRoutesList); - if (routesList.value.length === 0) { + if ( routesList.value && routesList.value.length === 0) { // 后端控制路由:路由数据初始化,防止刷新时丢失 await initBackEndControlRoutes(); // 动态添加路由:防止非首页刷新时跳转回首页的问题 -- Gitblit v1.9.2