index.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import { hidden_xzqh, hidden_wall } from "@/common/js/cockpit.js";
  4. Vue.use(Router)
  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. export const constantRoutes = [{
  28. path: '/',
  29. component: () =>
  30. import('@/views/map3d'),
  31. hidden: true,
  32. children: [{
  33. path: '/view',
  34. component: () =>
  35. import('@/views/view'),
  36. hidden: true
  37. }, {
  38. path: '/cockpit',
  39. component: () =>
  40. import('@/views/cockpit'),
  41. hidden: true
  42. }, {
  43. path: '/overview',
  44. component: () =>
  45. import('@/views/viewer.vue'),
  46. hidden: true
  47. },
  48. // 三维报建
  49. {
  50. path: '/checkmodel',
  51. component: () =>
  52. import('@/views/checkmodel'),
  53. hidden: true
  54. },
  55. // 广告牌规划审查
  56. {
  57. path: '/billboardplan',
  58. component: () =>
  59. import('@/views/billboardplan'),
  60. hidden: true
  61. },
  62. // 拆迁补预估
  63. {
  64. path: '/demolitioncom',
  65. component: () =>
  66. import('@/views/demolitioncom'),
  67. hidden: true
  68. },
  69. // 基准地价分析
  70. {
  71. path: '/baselandprice',
  72. component: () =>
  73. import('@/views/baselandprice'),
  74. hidden: true
  75. },
  76. {
  77. path: '/siteselection',
  78. component: () =>
  79. import('@/views/siteselection/index.vue'),
  80. hidden: true
  81. },
  82. {
  83. path: '/complianceAnalysis',
  84. component: () =>
  85. import('@/views/complianceAnalysis/index.vue'),
  86. hidden: true
  87. },
  88. ]
  89. }, {
  90. path: '/login',
  91. component: () =>
  92. import('@/views/login'),
  93. hidden: true
  94. }]
  95. // 动态路由,基于用户权限动态去加载
  96. export const dynamicRoutes = []
  97. // 防止连续点击多次路由报错
  98. let routerPush = Router.prototype.push;
  99. Router.prototype.push = function push(location) {
  100. return routerPush.call(this, location).catch(err => err)
  101. }
  102. const router = new Router({
  103. mode: 'history', // 去掉url中的#
  104. scrollBehavior: () => ({ y: 0 }),
  105. routes: constantRoutes
  106. })
  107. export default router;