index.js 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import http from '@/utils/request'
  4. import {isURL} from '@/utils/validate'
  5. import Cookies from 'js-cookie'
  6. Vue.use(Router)
  7. // 页面路由(独立页面)
  8. export const pageRoutes = [
  9. {
  10. path: '/404',
  11. component: () => import('@/views/pages/404'),
  12. name: '404',
  13. meta: {title: '404未找到'},
  14. beforeEnter (to, from, next) {
  15. // 拦截处理特殊业务场景
  16. // 如果, 重定向路由包含__双下划线, 为临时添加路由
  17. if (/__.*/.test(to.redirectedFrom)) {
  18. return next(to.redirectedFrom.replace(/__.*/, ''))
  19. }
  20. next()
  21. }
  22. },
  23. {path: '/login', component: () => import('@/views/pages/login'), name: 'login', meta: {title: '登录'}}
  24. ]
  25. // 模块路由(基于主入口布局页面)
  26. export const moduleRoutes = {
  27. path: '/',
  28. component: () => import('@/views/main/main'),
  29. name: 'main',
  30. redirect: {name: 'login'},
  31. meta: {title: '主入口布局'},
  32. children: [
  33. // {path: '/home', component: () => import('@/views/modules/home'), name: 'home', meta: {title: '首页', parentUUID: 0, UUID: 'index1'}}
  34. // {path: 'home', component: () => import('@/views/business/home/home'), name: 'home', meta: {title: '首页'}}
  35. // {path: 'demo/list-demo', component: () => import('@/views/modules/demo/listDemo/list-demo'), name: 'list-demo', meta: {title: '列表页'}},
  36. // {path: 'demo/all-form-type', component: () => import('@/views/modules/demo/all-form-type'), name: 'all-form-type', meta: {title: '表单页'}}
  37. ]
  38. }
  39. const router = new Router({
  40. mode: 'hash',
  41. scrollBehavior: () => ({y: 0}),
  42. routes: pageRoutes.concat(moduleRoutes)
  43. })
  44. router.beforeEach((to, from, next) => {
  45. //存路径
  46. if(to.path != "/login") {
  47. localStorage.setItem('pathCopy',to.path)
  48. // store.state.pathCopyshow = true
  49. // store.state.pathCopy = to.path
  50. }
  51. // 截取路由中token进行处理
  52. // filterToken(to, from, next)
  53. // console.log(to)
  54. // console.log(from)
  55. // 添加动态(菜单)路由
  56. // 已添加或者当前路由为页面路由, 可直接访问
  57. if (window.SITE_CONFIG['dynamicMenuRoutesHasAdded'] || fnCurrentRouteIsPageRoute(to, pageRoutes)) {
  58. if (undefined != to.meta.isNavbar) {
  59. window.SITE_CONFIG['isNavbar'] = to.meta.isNavbar
  60. }
  61. if (undefined != to.meta.isSidebar) {
  62. window.SITE_CONFIG['isSidebar'] = to.meta.isSidebar
  63. }
  64. return next()
  65. }
  66. // 获取菜单列表, 添加并全局变量保存
  67. http.get('/idaas/ps/user/menuList').then(({data: res}) => {
  68. if (res.code !== 0) {
  69. Vue.prototype.$message.error(res.msg)
  70. return next({name: 'login'})
  71. }
  72. let toPath = findPathInHttpMenu(to, res.menuList)
  73. let firstPath = toPath || getFirstPath(res.menuList)
  74. // setPathByUUID(res.menuList)
  75. // console.log(to, from, res, firstPath)
  76. // if (!firstPath) {
  77. // let homePage = {
  78. // 'UUID': 'index1',
  79. // 'parentUUID': 0,
  80. // 'name': '首页',
  81. // 'ename': 'home',
  82. // 'path': 'home',
  83. // 'componentPath': 'modules/home'
  84. // }
  85. // res.list.unshift(homePage)
  86. // firstPath = '/home'
  87. // }
  88. window.SITE_CONFIG['menuList'] = res.menuList
  89. fnAddDynamicMenuRoutes(window.SITE_CONFIG['menuList'])
  90. let obj = {
  91. ...to,
  92. path: firstPath,
  93. name: ''
  94. }
  95. next({...obj, replace: true})
  96. }).catch(() => {
  97. next({name: 'login'})
  98. })
  99. })
  100. function findPathInHttpMenu (to, list) {
  101. let backPath = ''
  102. list.forEach((e) => {
  103. let path = e.UUID
  104. // let path = e.path || e.UUID
  105. if ('/' + path === to.path) {
  106. backPath = path
  107. }
  108. })
  109. return backPath
  110. }
  111. function getFirstPath (list) {
  112. let backPath = ''
  113. for (let i = 0; i < list.length; i++) {
  114. let e = list[i]
  115. let path = e.UUID
  116. // let path = e.path || e.UUID
  117. if (!e.parentUUID && path && e.url) {
  118. backPath = path
  119. break
  120. }
  121. }
  122. return backPath
  123. }
  124. function setPathByUUID (list) {
  125. list.forEach((e) => {
  126. !e.path && (e.path = e.UUID)
  127. })
  128. }
  129. /**
  130. * 判断当前路由是否为页面路由
  131. * @param {*} route 当前路由
  132. * @param {*} pageRoutes 页面路由
  133. */
  134. function fnCurrentRouteIsPageRoute (route, pageRoutes = []) {
  135. var temp = []
  136. for (var i = 0; i < pageRoutes.length; i++) {
  137. if (route.path === pageRoutes[i].path) {
  138. return true
  139. }
  140. if (pageRoutes[i].children && pageRoutes[i].children.length >= 1) {
  141. temp = temp.concat(pageRoutes[i].children)
  142. }
  143. }
  144. return temp.length >= 1 ? fnCurrentRouteIsPageRoute(route, temp) : false
  145. }
  146. /**
  147. * 添加动态(菜单)路由
  148. * @param {*} menuList 菜单列表
  149. * @param {*} routes 递归创建的动态(菜单)路由
  150. */
  151. function fnAddDynamicMenuRoutes (menuList = [], routes = []) {
  152. var temp = []
  153. for (var i = 0; i < menuList.length; i++) {
  154. if (menuList[i].children && menuList[i].children.length >= 1) {
  155. temp = temp.concat(menuList[i].children)
  156. continue
  157. }
  158. let path = menuList[i].UUID
  159. // let path = menuList[i].path || menuList[i].UUID
  160. let componentPath = menuList[i].componentPath
  161. let url = menuList[i].url
  162. // if (!url) {
  163. // continue
  164. // }
  165. // console.log(url)
  166. // 组装路由
  167. var route = {
  168. path: path,
  169. component: '',
  170. name: menuList[i].ename,
  171. meta: {
  172. UUID: menuList[i].UUID,
  173. parentUUID: menuList[i].parentUUID,
  174. title: menuList[i].name
  175. }
  176. }
  177. // url = 'https://juejin.im/' // 测试用
  178. // console.log(url, menuList[i].name, i)
  179. if (isURL(url)) {
  180. route.meta.iframeURL = url
  181. route.component = () => import(`@/views/modules/home`)
  182. } else {
  183. route.meta.iframeURL = ''
  184. if (componentPath) {
  185. route.component = () => import(`@/views/${componentPath}`)
  186. } else {
  187. route.component = () => import(`@/views/main/main-no-url-page`)
  188. }
  189. // route.component = () => import(`@/views/${componentPath}`)
  190. }
  191. // console.log(route)
  192. // console.log(route)
  193. // 组装路由
  194. // var route = {
  195. // path: '',
  196. // component: null,
  197. // name: '',
  198. // meta: {
  199. // ...window.SITE_CONFIG['contentTabDefault'],
  200. // menuId: menuList[i].id,
  201. // title: menuList[i].name
  202. // }
  203. // }
  204. // // eslint-disable-next-line
  205. // let URL = (menuList[i].url || '').replace(/{{([^}}]+)?}}/g, (s1, s2) => eval(s2)) // URL支持{{ window.xxx }}占位符变量
  206. // if (isURL(URL)) {
  207. // route['path'] = route['name'] = `i-${menuList[i].id}`
  208. // route['meta']['iframeURL'] = URL
  209. // } else {
  210. // URL = URL.replace(/^\//, '').replace(/_/g, '-')
  211. // route['path'] = route['name'] = URL.replace(/\//g, '-')
  212. // route['component'] = () => import(`@/views/modules/${URL}`)
  213. // }
  214. routes.push(route)
  215. }
  216. if (temp.length >= 1) {
  217. return fnAddDynamicMenuRoutes(temp, routes)
  218. }
  219. // let homePage = {
  220. // 'UUID': 'index1',
  221. // 'parentUUID': 0,
  222. // 'name': '首页',
  223. // 'ename': 'home',
  224. // 'path': 'home',
  225. // 'componentPath': 'modules/home'
  226. // }
  227. // routes.push({ // 此时再加入home页面,此页面作为登陆后的第一着陆点
  228. // path: 'home',
  229. // name: 'home',
  230. // componen: () => import(`@/views/modules/home`),
  231. // meta: {
  232. // UUID: 'index1',
  233. // parentUUID: 0,
  234. // title: '首页'
  235. // }
  236. // })
  237. // 添加路由
  238. router.addRoutes([
  239. {
  240. ...moduleRoutes,
  241. name: 'main-dynamic-menu',
  242. children: routes
  243. },
  244. {path: '*', redirect: {name: '404'}}
  245. ])
  246. window.SITE_CONFIG['dynamicMenuRoutes'] = routes
  247. window.SITE_CONFIG['dynamicMenuRoutesHasAdded'] = true
  248. }
  249. /**
  250. * 截取路由中的token并进行处理
  251. *
  252. */
  253. function filterToken (route, to, from, next) {
  254. // console.log("token: "+to.fullPath)
  255. // var tokens = route.query.token;
  256. // console.log(tokens)
  257. // if(undefined != tokens){
  258. // Cookies.set('token', tokens)
  259. // }
  260. // Cookies.set('token', "8dcbf9730cec72cf8435e4f7e67e27fc")
  261. }
  262. export default router