index.js 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /**
  2. * @author https://vue-admin-beautiful.com (不想保留author可删除)
  3. * @description router全局配置,如有必要可分文件抽离,其中asyncRoutes只有在intelligence模式下才会用到,vip文档中已提供路由的基础图标与小清新图标的配置方案,请仔细阅读
  4. */
  5. import Vue from 'vue'
  6. import VueRouter from 'vue-router'
  7. import Layout from '@/layouts'
  8. import EmptyLayout from '@/layouts/EmptyLayout'
  9. import { publicPath, routerMode } from '@/config'
  10. Vue.use(VueRouter)
  11. export const constantRoutes = [
  12. {
  13. path: '/login',
  14. component: () => import('@/views/login/index'),
  15. hidden: true,
  16. },
  17. {
  18. path: '/register',
  19. component: () => import('@/views/register/index'),
  20. hidden: true,
  21. },
  22. {
  23. path: '/401',
  24. name: '401',
  25. component: () => import('@/views/401'),
  26. hidden: true,
  27. },
  28. {
  29. path: '/404',
  30. name: '404',
  31. component: () => import('@/views/404'),
  32. hidden: true,
  33. },
  34. ]
  35. export const asyncRoutes = [
  36. // {
  37. // path: '/',
  38. // component: Layout,
  39. // redirect: '/index',
  40. // children: [
  41. // {
  42. // path: 'index',
  43. // name: 'Index',
  44. // component: () => import('@/views/index/index'),
  45. // meta: {
  46. // title: '首页',
  47. // icon: 'home',
  48. // affix: true,
  49. // },
  50. // },
  51. // ],
  52. // },
  53. {
  54. path: '/',
  55. component: Layout,
  56. redirect: '/target',
  57. children: [
  58. {
  59. path: 'target',
  60. name: 'Target',
  61. component: () => import('@/views/target/index.vue'),
  62. meta: {
  63. title: '指标录入',
  64. icon: 'marker',
  65. affix: true,
  66. },
  67. },
  68. ],
  69. },
  70. /* {
  71. path: "/test",
  72. component: Layout,
  73. redirect: "noRedirect",
  74. children: [
  75. {
  76. path: "test",
  77. name: "Test",
  78. component: () => import("@/views/test/index"),
  79. meta: {
  80. title: "test",
  81. icon: "marker",
  82. permissions: ["admin"],
  83. },
  84. },
  85. ],
  86. }, */
  87. // {
  88. // path: '/vab',
  89. // component: Layout,
  90. // redirect: 'noRedirect',
  91. // name: 'Vab',
  92. // alwaysShow: true,
  93. // meta: { title: '组件', icon: 'box-open' },
  94. // children: [
  95. // {
  96. // path: 'permissions',
  97. // name: 'Permission',
  98. // component: () => import('@/views/vab/permissions/index'),
  99. // meta: {
  100. // title: '角色权限',
  101. // permissions: ['admin', 'editor'],
  102. // },
  103. // },
  104. // {
  105. // path: 'icon',
  106. // component: EmptyLayout,
  107. // redirect: 'noRedirect',
  108. // name: 'Icon',
  109. // meta: {
  110. // title: '图标',
  111. // permissions: ['admin'],
  112. // },
  113. // children: [
  114. // {
  115. // path: 'awesomeIcon',
  116. // name: 'AwesomeIcon',
  117. // component: () => import('@/views/vab/icon/index'),
  118. // meta: { title: '常规图标' },
  119. // },
  120. // {
  121. // path: 'colorfulIcon',
  122. // name: 'ColorfulIcon',
  123. // component: () => import('@/views/vab/icon/colorfulIcon'),
  124. // meta: { title: '多彩图标' },
  125. // },
  126. // ],
  127. // },
  128. // {
  129. // path: 'table',
  130. // component: () => import('@/views/vab/table/index'),
  131. // name: 'Table',
  132. // meta: {
  133. // title: '表格',
  134. // permissions: ['admin'],
  135. // },
  136. // },
  137. // {
  138. // path: 'map',
  139. // component: () => import('@/views/vab/map/index'),
  140. // name: 'Map',
  141. // meta: {
  142. // title: '地图',
  143. // permissions: ['admin'],
  144. // },
  145. // },
  146. // {
  147. // path: 'webSocket',
  148. // name: 'WebSocket',
  149. // component: () => import('@/views/vab/webSocket/index'),
  150. // meta: { title: 'webSocket', permissions: ['admin'] },
  151. // },
  152. // {
  153. // path: 'form',
  154. // name: 'Form',
  155. // component: () => import('@/views/vab/form/index'),
  156. // meta: { title: '表单', permissions: ['admin'] },
  157. // },
  158. // {
  159. // path: 'element',
  160. // name: 'Element',
  161. // component: () => import('@/views/vab/element/index'),
  162. // meta: { title: '常用组件', permissions: ['admin'] },
  163. // },
  164. // {
  165. // path: 'tree',
  166. // name: 'Tree',
  167. // component: () => import('@/views/vab/tree/index'),
  168. // meta: { title: '树', permissions: ['admin'] },
  169. // },
  170. // {
  171. // path: 'menu1',
  172. // component: () => import('@/views/vab/nested/menu1/index'),
  173. // name: 'Menu1',
  174. // alwaysShow: true,
  175. // meta: {
  176. // title: '嵌套路由 1',
  177. // permissions: ['admin'],
  178. // },
  179. // children: [
  180. // {
  181. // path: 'menu1-1',
  182. // name: 'Menu1-1',
  183. // alwaysShow: true,
  184. // meta: { title: '嵌套路由 1-1' },
  185. // component: () => import('@/views/vab/nested/menu1/menu1-1/index'),
  186. // children: [
  187. // {
  188. // path: 'menu1-1-1',
  189. // name: 'Menu1-1-1',
  190. // meta: { title: '嵌套路由 1-1-1' },
  191. // component: () =>
  192. // import('@/views/vab/nested/menu1/menu1-1/menu1-1-1/index'),
  193. // },
  194. // ],
  195. // },
  196. // ],
  197. // },
  198. // {
  199. // path: 'loading',
  200. // name: 'Loading',
  201. // component: () => import('@/views/vab/loading/index'),
  202. // meta: { title: 'loading', permissions: ['admin'] },
  203. // },
  204. // {
  205. // path: 'backToTop',
  206. // name: 'BackToTop',
  207. // component: () => import('@/views/vab/backToTop/index'),
  208. // meta: { title: '返回顶部', permissions: ['admin'] },
  209. // },
  210. // {
  211. // path: 'lodash',
  212. // name: 'Lodash',
  213. // component: () => import('@/views/vab/lodash/index'),
  214. // meta: { title: 'lodash', permissions: ['admin'] },
  215. // },
  216. // {
  217. // path: 'smallComponents',
  218. // name: 'SmallComponents',
  219. // component: () => import('@/views/vab/smallComponents/index'),
  220. // meta: { title: '小组件', permissions: ['admin'] },
  221. // },
  222. // {
  223. // path: 'upload',
  224. // name: 'Upload',
  225. // component: () => import('@/views/vab/upload/index'),
  226. // meta: { title: '上传', permissions: ['admin'] },
  227. // },
  228. // {
  229. // path: 'log',
  230. // name: 'Log',
  231. // component: () => import('@/views/vab/errorLog/index'),
  232. // meta: { title: '错误日志模拟', permissions: ['admin'] },
  233. // },
  234. // {
  235. // path: 'https://github.com/chuzhixin/vue-admin-beautiful?utm_source=gold_browser_extension',
  236. // name: 'ExternalLink',
  237. // meta: {
  238. // title: '外链',
  239. // target: '_blank',
  240. // permissions: ['admin', 'editor'],
  241. // badge: 'New',
  242. // },
  243. // },
  244. // {
  245. // path: 'more',
  246. // name: 'More',
  247. // component: () => import('@/views/vab/more/index'),
  248. // meta: { title: '关于', permissions: ['admin'] },
  249. // },
  250. // ],
  251. // },
  252. // {
  253. // path: '/personnelManagement',
  254. // component: Layout,
  255. // redirect: 'noRedirect',
  256. // name: 'PersonnelManagement',
  257. // meta: { title: '配置', icon: 'users-cog', permissions: ['admin'] },
  258. // children: [
  259. // {
  260. // path: 'userManagement',
  261. // name: 'UserManagement',
  262. // component: () =>
  263. // import('@/views/personnelManagement/userManagement/index'),
  264. // meta: { title: '用户管理' },
  265. // },
  266. // {
  267. // path: 'roleManagement',
  268. // name: 'RoleManagement',
  269. // component: () =>
  270. // import('@/views/personnelManagement/roleManagement/index'),
  271. // meta: { title: '角色管理' },
  272. // },
  273. // {
  274. // path: 'menuManagement',
  275. // name: 'MenuManagement',
  276. // component: () =>
  277. // import('@/views/personnelManagement/menuManagement/index'),
  278. // meta: { title: '菜单管理', badge: 'New' },
  279. // },
  280. // ],
  281. // },
  282. // {
  283. // path: '/mall',
  284. // component: Layout,
  285. // redirect: 'noRedirect',
  286. // name: 'Mall',
  287. // meta: {
  288. // title: '商城',
  289. // icon: 'shopping-cart',
  290. // permissions: ['admin'],
  291. // },
  292. // children: [
  293. // {
  294. // path: 'pay',
  295. // name: 'Pay',
  296. // component: () => import('@/views/mall/pay/index'),
  297. // meta: {
  298. // title: '支付',
  299. // noKeepAlive: true,
  300. // },
  301. // children: null,
  302. // },
  303. // {
  304. // path: 'goodsList',
  305. // name: 'GoodsList',
  306. // component: () => import('@/views/mall/goodsList/index'),
  307. // meta: {
  308. // title: '商品列表',
  309. // },
  310. // },
  311. // ],
  312. // },
  313. // {
  314. // path: '/error',
  315. // component: EmptyLayout,
  316. // redirect: 'noRedirect',
  317. // name: 'Error',
  318. // meta: { title: '错误页', icon: 'bug' },
  319. // children: [
  320. // {
  321. // path: '401',
  322. // name: 'Error401',
  323. // component: () => import('@/views/401'),
  324. // meta: { title: '401' },
  325. // },
  326. // {
  327. // path: '404',
  328. // name: 'Error404',
  329. // component: () => import('@/views/404'),
  330. // meta: { title: '404' },
  331. // },
  332. // ],
  333. // },
  334. {
  335. path: '*',
  336. redirect: '/404',
  337. hidden: true,
  338. },
  339. ]
  340. const router = new VueRouter({
  341. base: publicPath,
  342. mode: routerMode,
  343. scrollBehavior: () => ({
  344. y: 0,
  345. }),
  346. routes: constantRoutes,
  347. })
  348. export function resetRouter() {
  349. location.reload()
  350. }
  351. export default router