|
@@ -33,7 +33,7 @@ export const moduleRoutes = {
|
|
|
redirect: {name: 'login'},
|
|
|
meta: {title: '主入口布局'},
|
|
|
children: [
|
|
|
- // {path: '/home', component: () => import('@/views/modules/home'), name: 'home', meta: {title: '首页', parentUUID: 0, uuid: 'index1'}}
|
|
|
+ // {path: '/home', component: () => import('@/views/modules/home'), name: 'home', meta: {title: '首页', parentUUID: 0, UUID: 'index1'}}
|
|
|
// {path: 'home', component: () => import('@/views/business/home/home'), name: 'home', meta: {title: '首页'}}
|
|
|
// {path: 'demo/list-demo', component: () => import('@/views/modules/demo/listDemo/list-demo'), name: 'list-demo', meta: {title: '列表页'}},
|
|
|
// {path: 'demo/all-form-type', component: () => import('@/views/modules/demo/all-form-type'), name: 'all-form-type', meta: {title: '表单页'}}
|
|
@@ -48,7 +48,7 @@ const router = new Router({
|
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
// 截取路由中token进行处理
|
|
|
- filterToken(to, from, next)
|
|
|
+ // filterToken(to, from, next)
|
|
|
// console.log(to)
|
|
|
// console.log(from)
|
|
|
// 添加动态(菜单)路由
|
|
@@ -68,23 +68,43 @@ router.beforeEach((to, from, next) => {
|
|
|
Vue.prototype.$message.error(res.msg)
|
|
|
return next({name: 'login'})
|
|
|
}
|
|
|
- let homePage = {
|
|
|
- 'uuid': 'index1',
|
|
|
- 'parentUUID': 0,
|
|
|
- 'name': '首页',
|
|
|
- 'ename': 'home',
|
|
|
- 'path': 'home',
|
|
|
- 'componentPath': 'modules/home'
|
|
|
- }
|
|
|
- res.list.unshift(homePage)
|
|
|
+ let firstPath = getParent(res.list)
|
|
|
+ // console.log(firstPath)
|
|
|
+ // if (!firstPath) {
|
|
|
+ // let homePage = {
|
|
|
+ // 'UUID': 'index1',
|
|
|
+ // 'parentUUID': 0,
|
|
|
+ // 'name': '首页',
|
|
|
+ // 'ename': 'home',
|
|
|
+ // 'path': 'home',
|
|
|
+ // 'componentPath': 'modules/home'
|
|
|
+ // }
|
|
|
+ // res.list.unshift(homePage)
|
|
|
+ // firstPath = '/home'
|
|
|
+ // }
|
|
|
+
|
|
|
window.SITE_CONFIG['menuList'] = res.list
|
|
|
fnAddDynamicMenuRoutes(window.SITE_CONFIG['menuList'])
|
|
|
- next({...to, replace: true})
|
|
|
+ // console.log(firstPath)
|
|
|
+ next({path: firstPath, replace: true})
|
|
|
}).catch(() => {
|
|
|
next({name: 'login'})
|
|
|
})
|
|
|
})
|
|
|
|
|
|
+function getParent (list) {
|
|
|
+ let arr = list.filter((e) => {
|
|
|
+ if (!e.path) {
|
|
|
+ e.path = e.UUID
|
|
|
+ }
|
|
|
+ if (!e.url) {
|
|
|
+ // e.url = 'https://juejin.im/'
|
|
|
+ }
|
|
|
+ return !e.parentUUID && e.path && e.url
|
|
|
+ })
|
|
|
+ return arr[0].path
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* 判断当前路由是否为页面路由
|
|
|
* @param {*} route 当前路由
|
|
@@ -117,7 +137,8 @@ function fnAddDynamicMenuRoutes (menuList = [], routes = []) {
|
|
|
}
|
|
|
let path = menuList[i].path
|
|
|
let componentPath = menuList[i].componentPath
|
|
|
- if (!path) {
|
|
|
+ let url = menuList[i].url
|
|
|
+ if (!url) {
|
|
|
continue
|
|
|
}
|
|
|
|
|
@@ -127,14 +148,15 @@ function fnAddDynamicMenuRoutes (menuList = [], routes = []) {
|
|
|
component: '',
|
|
|
name: menuList[i].ename,
|
|
|
meta: {
|
|
|
- uuid: menuList[i].uuid,
|
|
|
+ UUID: menuList[i].UUID,
|
|
|
parentUUID: menuList[i].parentUUID,
|
|
|
title: menuList[i].name
|
|
|
}
|
|
|
}
|
|
|
- menuList[i].url = 'https://juejin.im/' // 测试用
|
|
|
- if (isURL(menuList[i].url)) {
|
|
|
- route.meta.iframeURL = menuList[i].url
|
|
|
+
|
|
|
+ // url = 'https://juejin.im/' // 测试用
|
|
|
+ if (isURL(url)) {
|
|
|
+ route.meta.iframeURL = url
|
|
|
route.component = () => import(`@/views/modules/home`)
|
|
|
} else {
|
|
|
route.component = () => import(`@/views/${componentPath}`)
|
|
@@ -167,6 +189,24 @@ function fnAddDynamicMenuRoutes (menuList = [], routes = []) {
|
|
|
if (temp.length >= 1) {
|
|
|
return fnAddDynamicMenuRoutes(temp, routes)
|
|
|
}
|
|
|
+ // let homePage = {
|
|
|
+ // 'UUID': 'index1',
|
|
|
+ // 'parentUUID': 0,
|
|
|
+ // 'name': '首页',
|
|
|
+ // 'ename': 'home',
|
|
|
+ // 'path': 'home',
|
|
|
+ // 'componentPath': 'modules/home'
|
|
|
+ // }
|
|
|
+ // routes.push({ // 此时再加入home页面,此页面作为登陆后的第一着陆点
|
|
|
+ // path: 'home',
|
|
|
+ // name: 'home',
|
|
|
+ // componen: () => import(`@/views/modules/home`),
|
|
|
+ // meta: {
|
|
|
+ // UUID: 'index1',
|
|
|
+ // parentUUID: 0,
|
|
|
+ // title: '首页'
|
|
|
+ // }
|
|
|
+ // })
|
|
|
// 添加路由
|
|
|
router.addRoutes([
|
|
|
{
|