Newer
Older
urbanLifeline_YanAn / src / router / index.js
@zhangqy zhangqy on 17 Oct 3 KB 首页修改
  1. import { createWebHistory, createWebHashHistory, createRouter } from 'vue-router';
  2. /* Layout */
  3. import Layout from '@/layout';
  4.  
  5. /**
  6. * Note: 路由配置项
  7. *
  8. * hidden: true // 当设置 true 的时候该路由不会再侧边栏出现 如401,login等页面,或者如一些编辑页面/edit/1
  9. * alwaysShow: true // 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式--如组件页面
  10. * // 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面
  11. * // 若你想不管路由下面的 children 声明的个数都显示你的根路由
  12. * // 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,一直显示根路由
  13. * redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
  14. * name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
  15. * query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数
  16. * roles: ['admin', 'common'] // 访问路由的角色权限
  17. * permissions: ['a:a:a', 'b:b:b'] // 访问路由的菜单权限
  18. * meta : {
  19. noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
  20. title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
  21. icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg
  22. breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
  23. activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。
  24. }
  25. */
  26.  
  27. // 公共路由
  28. export const constantRoutes = [
  29. {
  30. path: '/redirect',
  31. component: Layout,
  32. hidden: true,
  33. children: [
  34. {
  35. path: '/redirect/:path(.*)',
  36. component: () => import('@/views/redirect/index.vue'),
  37. },
  38. ],
  39. },
  40. {
  41. path: '/login',
  42. component: () => import('@/views/login'),
  43. hidden: true,
  44. },
  45. {
  46. path: '/:pathMatch(.*)*',
  47. component: () => import('@/views/error/404'),
  48. hidden: true,
  49. },
  50. {
  51. path: '/401',
  52. component: () => import('@/views/error/401'),
  53. hidden: true,
  54. },
  55. {
  56. path: '',
  57. component: Layout,
  58. redirect: '/index',
  59. children: [
  60. {
  61. path: '/index',
  62. component: () => import('@/views/index'),
  63. name: 'Index',
  64. meta: { title: '首页', icon: 'dashboard', affix: true, noCache: true, breadcrumb: false }, query: '{"type":"FullScreen"}'
  65. },
  66. ],
  67. },
  68. {
  69. component: Layout,
  70. redirect: '/oneMap',
  71. children: [
  72. {
  73. path: '/oneMap',
  74. component: () => import('@/views/oneMap'),
  75. name: 'oneMap',
  76. meta: { title: '一张图', icon: 'dashboard', affix: true, noCache: true },
  77. query: '{"type":"FullScreen"}'
  78. },
  79. ], hidden: true
  80. },
  81. {
  82. path: '/user',
  83. component: Layout,
  84. hidden: true,
  85. redirect: 'noredirect',
  86. children: [
  87. {
  88. path: 'profile',
  89. component: () => import('@/views/system/user/profile/index'),
  90. name: 'Profile',
  91. meta: { title: '个人中心', icon: 'user' },
  92. },
  93. ],
  94. },
  95. ];
  96.  
  97. // 动态路由,基于用户权限动态去加载
  98. export const dynamicRoutes = [];
  99.  
  100. const router = createRouter({
  101. //history: createWebHistory(),
  102. history: createWebHashHistory('/NFProduct/'),
  103. routes: constantRoutes,
  104. scrollBehavior(to, from, savedPosition) {
  105. if (savedPosition) {
  106. return savedPosition;
  107. } else {
  108. return { top: 0 };
  109. }
  110. },
  111. });
  112.  
  113. export default router;