mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 23:23:55 +08:00
189 lines
4.1 KiB
JavaScript
189 lines
4.1 KiB
JavaScript
import Vue from 'vue'
|
|
import VueRouter from 'vue-router'
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
const routes = [
|
|
{
|
|
path: '/',
|
|
name: 'welcome',
|
|
component: function () {
|
|
return import('../views/login.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/role-config',
|
|
name: 'RoleConfig',
|
|
component: function () {
|
|
return import('../views/roleConfig.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/voice-print',
|
|
name: 'VoicePrint',
|
|
component: function () {
|
|
return import('../views/VoicePrint.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/login',
|
|
name: 'login',
|
|
component: function () {
|
|
return import('../views/login.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/home',
|
|
name: 'home',
|
|
component: function () {
|
|
return import('../views/home.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/register',
|
|
name: 'Register',
|
|
component: function () {
|
|
return import('../views/register.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/retrieve-password',
|
|
name: 'RetrievePassword',
|
|
component: function () {
|
|
return import('../views/retrievePassword.vue')
|
|
}
|
|
},
|
|
// 设备管理页面路由
|
|
{
|
|
path: '/device-management',
|
|
name: 'DeviceManagement',
|
|
component: function () {
|
|
return import('../views/DeviceManagement.vue')
|
|
}
|
|
},
|
|
// 添加用户管理路由
|
|
{
|
|
path: '/user-management',
|
|
name: 'UserManagement',
|
|
component: function () {
|
|
return import('../views/UserManagement.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/model-config',
|
|
name: 'ModelConfig',
|
|
component: function () {
|
|
return import('../views/ModelConfig.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/params-management',
|
|
name: 'ParamsManagement',
|
|
component: function () {
|
|
return import('../views/ParamsManagement.vue')
|
|
},
|
|
meta: {
|
|
requiresAuth: true,
|
|
title: '参数管理'
|
|
}
|
|
},
|
|
|
|
{
|
|
path: '/server-side-management',
|
|
name: 'ServerSideManager',
|
|
component: function () {
|
|
return import('../views/ServerSideManager.vue')
|
|
},
|
|
meta: {
|
|
requiresAuth: true,
|
|
title: '服务端管理'
|
|
}
|
|
},
|
|
{
|
|
path: '/ota-management',
|
|
name: 'OtaManagement',
|
|
component: function () {
|
|
return import('../views/OtaManagement.vue')
|
|
},
|
|
meta: {
|
|
requiresAuth: true,
|
|
title: 'OTA管理'
|
|
}
|
|
},
|
|
{
|
|
path: '/dict-management',
|
|
name: 'DictManagement',
|
|
component: function () {
|
|
return import('../views/DictManagement.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/provider-management',
|
|
name: 'ProviderManagement',
|
|
component: function () {
|
|
return import('../views/ProviderManagement.vue')
|
|
}
|
|
},
|
|
// 添加默认角色管理路由
|
|
{
|
|
path: '/agent-template-management',
|
|
name: 'AgentTemplateManagement',
|
|
component: function () {
|
|
return import('../views/AgentTemplateManagement.vue')
|
|
}
|
|
},
|
|
// 添加模板快速配置路由
|
|
{
|
|
path: '/template-quick-config',
|
|
name: 'TemplateQuickConfig',
|
|
component: function () {
|
|
return import('../views/TemplateQuickConfig.vue')
|
|
}
|
|
},
|
|
{
|
|
path: '/provider-management',
|
|
name: 'ProviderManagement',
|
|
component: function () {
|
|
return import('../views/ProviderManagement.vue')
|
|
}
|
|
},
|
|
]
|
|
const router = new VueRouter({
|
|
base: process.env.VUE_APP_PUBLIC_PATH || '/',
|
|
routes
|
|
})
|
|
|
|
// 全局处理重复导航,改为刷新页面
|
|
const originalPush = VueRouter.prototype.push
|
|
VueRouter.prototype.push = function push(location) {
|
|
return originalPush.call(this, location).catch(err => {
|
|
if (err.name === 'NavigationDuplicated') {
|
|
// 如果是重复导航,刷新页面
|
|
window.location.reload()
|
|
} else {
|
|
// 其他错误正常抛出
|
|
throw err
|
|
}
|
|
})
|
|
}
|
|
|
|
// 需要登录才能访问的路由
|
|
const protectedRoutes = ['home', 'RoleConfig', 'DeviceManagement', 'UserManagement', 'ModelConfig', 'TemplateQuickConfig']
|
|
|
|
// 路由守卫
|
|
router.beforeEach((to, from, next) => {
|
|
// 检查是否是需要保护的路由
|
|
if (protectedRoutes.includes(to.name)) {
|
|
// 从localStorage获取token
|
|
const token = localStorage.getItem('token')
|
|
if (!token) {
|
|
// 未登录,跳转到登录页
|
|
next({ name: 'login', query: { redirect: to.fullPath } })
|
|
return
|
|
}
|
|
}
|
|
next()
|
|
})
|
|
|
|
export default router
|