123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- import { createRouter, createWebHistory, RouteRecordRaw, createWebHashHistory, Router } from 'vue-router'
- import Layout from "@/layout/index.vue";
- // 扩展继承属性
- interface extendRoute {
- hidden?: boolean
- }
- //
- import tableRouter from './modules/table'
- import dataScreenRouter from './modules/dataScreen'
- import excelRouter from './modules/excel'
- import nestedRouter from './modules/nested'
- import systemRouter from './modules/system'
- import echartsRouter from './modules/echarts'
- import chatRouter from './modules/chat'
- import othersRouter from './modules/other'
- import externalLink from './modules/externalLink'
- import formRouter from './modules/form'
- import functionPageRouter from './modules/functionPage'
- import playerInfo from './modules/player'
- import serverRouter from './modules/server'
- import operationRouter from './modules/operation'
- import activityRouter from './modules/activity'
- // 异步组件
- export const asyncRoutes = [
- // ...echartsRouter,
- // ...tableRouter,
- // ...formRouter,
- // ...othersRouter,
- // ...functionPageRouter,
- // ...chatRouter,
- // ...nestedRouter,
- // ...excelRouter,
- // ...externalLink,
- // 临时注释
- // ...playerInfo,
- // ...dataScreenRouter,
- ...systemRouter,
- ...serverRouter,
- ...operationRouter,
- ...activityRouter
- ]
- /**
- * path ==> 路由路径
- * name ==> 路由名称
- * component ==> 路由组件
- * redirect ==> 路由重定向
- * alwaysShow ==> 如果设置为true,将始终显示根菜单,无论其子路由长度如何
- * hidden ==> 如果“hidden:true”不会显示在侧边栏中(默认值为false)
- * keepAlive ==> 设为true 缓存
- * meta ==> 路由元信息
- * meta.title ==> 路由标题
- * meta.icon ==> 菜单icon
- * meta.affix ==> 如果设置为true将会出现在 标签栏中
- * meta.breadcrumb ==> 如果设置为false,该项将隐藏在breadcrumb中(默认值为true)
- */
- export const constantRoutes: Array<RouteRecordRaw & extendRoute> = [
- {
- path: "/404",
- name: "404",
- component: () => import("@/views/errorPages/404.vue"),
- hidden: true,
- },
- {
- path: "/403",
- name: "403",
- component: () => import("@/views/errorPages/403.vue"),
- hidden: true,
- },
- {
- path: '/login',
- name: 'Login',
- component: () => import('@/views/login/index.vue'),
- hidden: true,
- meta: { title: '登录', }
- },
- {
- path: '/',
- name: 'layout',
- component: Layout,
- redirect: '/player/index',
- meta: {
- title: '玩家信息',
- icon: 'chat-square'
- },
- children: [
- {
- path: '/player/index',
- component: () => import('@/views/player/index.vue'),
- name: 'chat-square',
- meta: { title: '玩家信息', icon: 'House', affix: true ,role:['other']}
- }
- ]
- },
- // {
- // path: '/',
- // name: 'layout',
- // component: Layout,
- // redirect: '/home',
- // meta: { title: '首页', icon: 'House', },
- // children: [
- // {
- // path: '/home',
- // component: () => import('@/views/home/index.vue'),
- // name: 'home',
- // meta: { title: '首页', icon: 'House', affix: true ,role:['other']}
- // },
- // ]
- // },
- ]
- /**
- * notFoundRouter(找不到路由)
- */
- export const notFoundRouter = {
- path: '/:pathMatch(.*)',
- name: "notFound",
- redirect: '/404'
- };
- const router = createRouter({
- // history: createWebHistory(process.env.BASE_URL), // history
- history: createWebHashHistory(), // hash
- routes: constantRoutes
- })
- export default router
|