From 41487b9a8ad1353c21dd1ac2bfafcf8d1d4f34e4 Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期五, 28 八月 2026 17:09:47 +0800
Subject: [PATCH] feat: 所有前端 API 请求加超时保护,超时/网络异常优雅提示,不再无限 pending
---
traffic-audit-web/src/router/index.js | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/traffic-audit-web/src/router/index.js b/traffic-audit-web/src/router/index.js
index 2540f38..0971ecf 100644
--- a/traffic-audit-web/src/router/index.js
+++ b/traffic-audit-web/src/router/index.js
@@ -3,7 +3,7 @@
Vue.use(Router)
-export default new Router({
+const router = new Router({
routes: [
{ path: '/', redirect: '/login' },
{ path: '/login', name: 'Login', component: () => import('@/views/Login.vue') },
@@ -17,3 +17,14 @@
{ path: '/users', name: 'UserManage', component: () => import('@/views/UserManage.vue') }
]
})
+
+router.beforeEach((to, from, next) => {
+ const token = localStorage.getItem('token')
+ if (to.path === '/login') {
+ next(token ? '/dashboard' : undefined)
+ } else {
+ next(token ? undefined : '/login')
+ }
+})
+
+export default router
--
Gitblit v1.9.1