| | |
| | | * redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
|
| | | * name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
|
| | | * query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数
|
| | | * roles: ['admin', 'common'] // 访问路由的角色权限
|
| | | * permissions: ['a:a:a', 'b:b:b'] // 访问路由的菜单权限
|
| | | * meta : {
|
| | | noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
|
| | | title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
|
| | |
| | | ]
|
| | | },
|
| | | {
|
| | | path: '/lock',
|
| | | component: () => import('@/views/lock'),
|
| | | hidden: true,
|
| | | meta: { title: '锁定屏幕' }
|
| | | },
|
| | | {
|
| | | path: '/user',
|
| | | component: Layout,
|
| | | hidden: true,
|
| | |
| | | meta: { title: '个人中心', icon: 'user' }
|
| | | }
|
| | | ]
|
| | | },
|
| | | }
|
| | | ]
|
| | |
|
| | | // 动态路由,基于用户权限动态去加载
|
| | | export const dynamicRoutes = [
|
| | | {
|
| | | path: '/system/user-auth',
|
| | | component: Layout,
|
| | | hidden: true,
|
| | | permissions: ['system:user:edit'],
|
| | | children: [
|
| | | {
|
| | | path: 'role/:userId(\\d+)',
|
| | |
| | | path: '/system/role-auth',
|
| | | component: Layout,
|
| | | hidden: true,
|
| | | permissions: ['system:role:edit'],
|
| | | children: [
|
| | | {
|
| | | path: 'user/:roleId(\\d+)',
|
| | |
| | | path: '/system/dict-data',
|
| | | component: Layout,
|
| | | hidden: true,
|
| | | permissions: ['system:dict:list'],
|
| | | children: [
|
| | | {
|
| | | path: 'index/:dictId(\\d+)',
|
| | |
| | | path: '/monitor/job-log',
|
| | | component: Layout,
|
| | | hidden: true,
|
| | | permissions: ['monitor:job:list'],
|
| | | children: [
|
| | | {
|
| | | path: 'index',
|
| | | path: 'index/:jobId(\\d+)',
|
| | | component: () => import('@/views/monitor/job/log'),
|
| | | name: 'JobLog',
|
| | | meta: { title: '调度日志', activeMenu: '/monitor/job' }
|
| | |
| | | path: '/tool/gen-edit',
|
| | | component: Layout,
|
| | | hidden: true,
|
| | | permissions: ['tool:gen:edit'],
|
| | | children: [
|
| | | {
|
| | | path: 'index',
|
| | | path: 'index/:tableId(\\d+)',
|
| | | component: () => import('@/views/tool/gen/editTable'),
|
| | | name: 'GenEdit',
|
| | | meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
|
| | |
| | | }
|
| | | ]
|
| | |
|
| | | // 防止连续点击多次路由报错
|
| | | let routerPush = Router.prototype.push
|
| | | let routerReplace = Router.prototype.replace
|
| | | // push
|
| | | Router.prototype.push = function push(location) {
|
| | | return routerPush.call(this, location).catch(err => err)
|
| | | }
|
| | | // replace
|
| | | Router.prototype.replace = function push(location) {
|
| | | return routerReplace.call(this, location).catch(err => err)
|
| | | }
|
| | |
|
| | | export default new Router({
|
| | | mode: 'history', // 去掉url中的#
|
| | | scrollBehavior: () => ({ y: 0 }),
|