index.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /**
  2. * @author chuzhixin 1204505056@qq.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: "/test",
  55. component: Layout,
  56. redirect: "noRedirect",
  57. children: [
  58. {
  59. path: "test",
  60. name: "Test",
  61. component: () => import("@/views/test/index"),
  62. meta: {
  63. title: "test",
  64. icon: "marker",
  65. permissions: ["admin"],
  66. },
  67. },
  68. ],
  69. }, */
  70. {
  71. path: '/vab',
  72. component: Layout,
  73. redirect: 'noRedirect',
  74. name: 'Vab',
  75. alwaysShow: true,
  76. meta: { title: '组件', icon: 'box-open' },
  77. children: [
  78. {
  79. path: 'permissions',
  80. name: 'Permission',
  81. component: () => import('@/views/vab/permissions/index'),
  82. meta: {
  83. title: '角色权限',
  84. permissions: ['admin', 'editor'],
  85. },
  86. },
  87. {
  88. path: 'icon',
  89. component: EmptyLayout,
  90. redirect: 'noRedirect',
  91. name: 'Icon',
  92. meta: {
  93. title: '图标',
  94. permissions: ['admin'],
  95. },
  96. children: [
  97. {
  98. path: 'awesomeIcon',
  99. name: 'AwesomeIcon',
  100. component: () => import('@/views/vab/icon/index'),
  101. meta: { title: '常规图标' },
  102. },
  103. {
  104. path: 'colorfulIcon',
  105. name: 'ColorfulIcon',
  106. component: () => import('@/views/vab/icon/colorfulIcon'),
  107. meta: { title: '多彩图标' },
  108. },
  109. ],
  110. },
  111. {
  112. path: 'table',
  113. component: () => import('@/views/vab/table/index'),
  114. name: 'Table',
  115. meta: {
  116. title: '表格',
  117. permissions: ['admin'],
  118. },
  119. },
  120. {
  121. path: 'map',
  122. component: () => import('@/views/vab/map/index'),
  123. name: 'Map',
  124. meta: {
  125. title: '地图',
  126. permissions: ['admin'],
  127. },
  128. },
  129. {
  130. path: 'webSocket',
  131. name: 'WebSocket',
  132. component: () => import('@/views/vab/webSocket/index'),
  133. meta: { title: 'webSocket', permissions: ['admin'] },
  134. },
  135. {
  136. path: 'form',
  137. name: 'Form',
  138. component: () => import('@/views/vab/form/index'),
  139. meta: { title: '表单', permissions: ['admin'] },
  140. },
  141. {
  142. path: 'element',
  143. name: 'Element',
  144. component: () => import('@/views/vab/element/index'),
  145. meta: { title: '常用组件', permissions: ['admin'] },
  146. },
  147. {
  148. path: 'tree',
  149. name: 'Tree',
  150. component: () => import('@/views/vab/tree/index'),
  151. meta: { title: '树', permissions: ['admin'] },
  152. },
  153. {
  154. path: 'verify',
  155. name: 'Verify',
  156. component: () => import('@/views/vab/verify/index'),
  157. meta: { title: '验证码', permissions: ['admin'] },
  158. },
  159. {
  160. path: 'menu1',
  161. component: () => import('@/views/vab/nested/menu1/index'),
  162. name: 'Menu1',
  163. alwaysShow: true,
  164. meta: {
  165. title: '嵌套路由 1',
  166. permissions: ['admin'],
  167. },
  168. children: [
  169. {
  170. path: 'menu1-1',
  171. name: 'Menu1-1',
  172. alwaysShow: true,
  173. meta: { title: '嵌套路由 1-1' },
  174. component: () => import('@/views/vab/nested/menu1/menu1-1/index'),
  175. children: [
  176. {
  177. path: 'menu1-1-1',
  178. name: 'Menu1-1-1',
  179. meta: { title: '嵌套路由 1-1-1' },
  180. component: () =>
  181. import('@/views/vab/nested/menu1/menu1-1/menu1-1-1/index'),
  182. },
  183. ],
  184. },
  185. ],
  186. },
  187. {
  188. path: 'magnifier',
  189. name: 'Magnifier',
  190. component: () => import('@/views/vab/magnifier/index'),
  191. meta: { title: '放大镜', permissions: ['admin'] },
  192. },
  193. {
  194. path: 'loading',
  195. name: 'Loading',
  196. component: () => import('@/views/vab/loading/index'),
  197. meta: { title: 'loading', permissions: ['admin'] },
  198. },
  199. {
  200. path: 'player',
  201. name: 'Player',
  202. component: () => import('@/views/vab/player/index'),
  203. meta: { title: '视频播放器', permissions: ['admin'] },
  204. },
  205. {
  206. path: 'markdownEditor',
  207. name: 'MarkdownEditor',
  208. component: () => import('@/views/vab/markdownEditor/index'),
  209. meta: { title: 'markdown编辑器', permissions: ['admin'] },
  210. },
  211. {
  212. path: 'editor',
  213. name: 'Editor',
  214. component: () => import('@/views/vab/editor/index'),
  215. meta: {
  216. title: '富文本编辑器',
  217. permissions: ['admin'],
  218. badge: 'New',
  219. },
  220. },
  221. {
  222. path: 'backToTop',
  223. name: 'BackToTop',
  224. component: () => import('@/views/vab/backToTop/index'),
  225. meta: { title: '返回顶部', permissions: ['admin'] },
  226. },
  227. {
  228. path: 'lodash',
  229. name: 'Lodash',
  230. component: () => import('@/views/vab/lodash/index'),
  231. meta: { title: 'lodash', permissions: ['admin'] },
  232. },
  233. {
  234. path: 'smallComponents',
  235. name: 'SmallComponents',
  236. component: () => import('@/views/vab/smallComponents/index'),
  237. meta: { title: '小组件', permissions: ['admin'] },
  238. },
  239. {
  240. path: 'upload',
  241. name: 'Upload',
  242. component: () => import('@/views/vab/upload/index'),
  243. meta: { title: '上传', permissions: ['admin'] },
  244. },
  245. {
  246. path: 'log',
  247. name: 'Log',
  248. component: () => import('@/views/vab/errorLog/index'),
  249. meta: { title: '错误日志模拟', permissions: ['admin'] },
  250. },
  251. {
  252. path:
  253. 'https://github.com/chuzhixin/vue-admin-beautiful?utm_source=gold_browser_extension',
  254. name: 'ExternalLink',
  255. meta: {
  256. title: '外链',
  257. target: '_blank',
  258. permissions: ['admin', 'editor'],
  259. badge: 'New',
  260. },
  261. },
  262. {
  263. path: 'more',
  264. name: 'More',
  265. component: () => import('@/views/vab/more/index'),
  266. meta: { title: '关于', permissions: ['admin'] },
  267. },
  268. ],
  269. },
  270. {
  271. path: '/personnelManagement',
  272. component: Layout,
  273. redirect: 'noRedirect',
  274. name: 'PersonnelManagement',
  275. meta: { title: '配置', icon: 'users-cog', permissions: ['admin'] },
  276. children: [
  277. {
  278. path: 'userManagement',
  279. name: 'UserManagement',
  280. component: () =>
  281. import('@/views/personnelManagement/userManagement/index'),
  282. meta: { title: '用户管理' },
  283. },
  284. {
  285. path: 'roleManagement',
  286. name: 'RoleManagement',
  287. component: () =>
  288. import('@/views/personnelManagement/roleManagement/index'),
  289. meta: { title: '角色管理' },
  290. },
  291. {
  292. path: 'menuManagement',
  293. name: 'MenuManagement',
  294. component: () =>
  295. import('@/views/personnelManagement/menuManagement/index'),
  296. meta: { title: '菜单管理', badge: 'New' },
  297. },
  298. ],
  299. },
  300. {
  301. path: '/mall',
  302. component: Layout,
  303. redirect: 'noRedirect',
  304. name: 'Mall',
  305. meta: {
  306. title: '商城',
  307. icon: 'shopping-cart',
  308. permissions: ['admin'],
  309. },
  310. children: [
  311. {
  312. path: 'pay',
  313. name: 'Pay',
  314. component: () => import('@/views/mall/pay/index'),
  315. meta: {
  316. title: '支付',
  317. noKeepAlive: true,
  318. },
  319. children: null,
  320. },
  321. {
  322. path: 'goodsList',
  323. name: 'GoodsList',
  324. component: () => import('@/views/mall/goodsList/index'),
  325. meta: {
  326. title: '商品列表',
  327. },
  328. },
  329. ],
  330. },
  331. {
  332. path: '/error',
  333. component: EmptyLayout,
  334. redirect: 'noRedirect',
  335. name: 'Error',
  336. meta: { title: '错误页', icon: 'bug' },
  337. children: [
  338. {
  339. path: '401',
  340. name: 'Error401',
  341. component: () => import('@/views/401'),
  342. meta: { title: '401' },
  343. },
  344. {
  345. path: '404',
  346. name: 'Error404',
  347. component: () => import('@/views/404'),
  348. meta: { title: '404' },
  349. },
  350. ],
  351. },
  352. {
  353. path: '*',
  354. redirect: '/404',
  355. hidden: true,
  356. },
  357. ]
  358. const router = new VueRouter({
  359. base: publicPath,
  360. mode: routerMode,
  361. scrollBehavior: () => ({
  362. y: 0,
  363. }),
  364. routes: constantRoutes,
  365. })
  366. //注释的地方是允许路由重复点击,如果你觉得框架路由跳转规范太过严格可选择放开
  367. const originalPush = VueRouter.prototype.push
  368. VueRouter.prototype.push = function push(location, onResolve, onReject) {
  369. if (onResolve || onReject)
  370. return originalPush.call(this, location, onResolve, onReject)
  371. return originalPush.call(this, location).catch((err) => err)
  372. }
  373. export function resetRouter() {
  374. router.matcher = new VueRouter({
  375. base: publicPath,
  376. mode: routerMode,
  377. scrollBehavior: () => ({
  378. y: 0,
  379. }),
  380. routes: constantRoutes,
  381. }).matcher
  382. }
  383. export default router