Update index.js

权限调整
This commit is contained in:
LiJinHui
2025-09-19 17:53:43 +08:00
parent b23e31bb4b
commit 611d1a65e7
+1 -14
View File
@@ -170,13 +170,10 @@ VueRouter.prototype.push = function push(location) {
// 需要登录才能访问的路由
const protectedRoutes = ['home', 'RoleConfig', 'DeviceManagement', 'UserManagement', 'ModelConfig']
// 需要管理员权限才能访问的路由
const adminRoutes = ['TemplateQuickConfig', 'AgentTemplateManagement']
// 路由守卫
router.beforeEach((to, from, next) => {
// 检查是否是需要保护的路由
if (protectedRoutes.includes(to.name) || adminRoutes.includes(to.name)) {
if (protectedRoutes.includes(to.name)) {
// 从localStorage获取token
const token = localStorage.getItem('token')
if (!token) {
@@ -184,16 +181,6 @@ router.beforeEach((to, from, next) => {
next({ name: 'login', query: { redirect: to.fullPath } })
return
}
// 对于需要管理员权限的路由,检查用户是否是超级管理员
if (adminRoutes.includes(to.name)) {
const isSuperAdmin = localStorage.getItem('isSuperAdmin') === 'true'
if (!isSuperAdmin) {
// 不是管理员,跳转到首页或显示无权限提示
next({ name: 'home' })
return
}
}
}
next()
})