index.js 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  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: 'https://github.com/chuzhixin/vue-admin-beautiful?utm_source=gold_browser_extension',
  253. name: 'ExternalLink',
  254. meta: {
  255. title: '外链',
  256. target: '_blank',
  257. permissions: ['admin', 'editor'],
  258. badge: 'New',
  259. },
  260. },
  261. {
  262. path: 'more',
  263. name: 'More',
  264. component: () => import('@/views/vab/more/index'),
  265. meta: { title: '关于', permissions: ['admin'] },
  266. },
  267. ],
  268. },
  269. {
  270. path: '/personnelManagement',
  271. component: Layout,
  272. redirect: 'noRedirect',
  273. name: 'PersonnelManagement',
  274. meta: { title: '配置', icon: 'users-cog', permissions: ['admin'] },
  275. children: [
  276. {
  277. path: 'userManagement',
  278. name: 'UserManagement',
  279. component: () =>
  280. import('@/views/personnelManagement/userManagement/index'),
  281. meta: { title: '用户管理' },
  282. },
  283. {
  284. path: 'roleManagement',
  285. name: 'RoleManagement',
  286. component: () =>
  287. import('@/views/personnelManagement/roleManagement/index'),
  288. meta: { title: '角色管理' },
  289. },
  290. {
  291. path: 'menuManagement',
  292. name: 'MenuManagement',
  293. component: () =>
  294. import('@/views/personnelManagement/menuManagement/index'),
  295. meta: { title: '菜单管理', badge: 'New' },
  296. },
  297. ],
  298. },
  299. {
  300. path: '/mall',
  301. component: Layout,
  302. redirect: 'noRedirect',
  303. name: 'Mall',
  304. meta: {
  305. title: '商城',
  306. icon: 'shopping-cart',
  307. permissions: ['admin'],
  308. },
  309. children: [
  310. {
  311. path: 'pay',
  312. name: 'Pay',
  313. component: () => import('@/views/mall/pay/index'),
  314. meta: {
  315. title: '支付',
  316. noKeepAlive: true,
  317. },
  318. children: null,
  319. },
  320. {
  321. path: 'goodsList',
  322. name: 'GoodsList',
  323. component: () => import('@/views/mall/goodsList/index'),
  324. meta: {
  325. title: '商品列表',
  326. },
  327. },
  328. ],
  329. },
  330. {
  331. path: '/error',
  332. component: EmptyLayout,
  333. redirect: 'noRedirect',
  334. name: 'Error',
  335. meta: { title: '错误页', icon: 'bug' },
  336. children: [
  337. {
  338. path: '401',
  339. name: 'Error401',
  340. component: () => import('@/views/401'),
  341. meta: { title: '401' },
  342. },
  343. {
  344. path: '404',
  345. name: 'Error404',
  346. component: () => import('@/views/404'),
  347. meta: { title: '404' },
  348. },
  349. ],
  350. },
  351. {
  352. path: '*',
  353. redirect: '/404',
  354. hidden: true,
  355. },
  356. ]
  357. const router = new VueRouter({
  358. base: publicPath,
  359. mode: routerMode,
  360. scrollBehavior: () => ({
  361. y: 0,
  362. }),
  363. routes: constantRoutes,
  364. })
  365. export function resetRouter() {
  366. location.reload()
  367. }
  368. export default router