Commit 100b341c authored by 李苏's avatar 李苏 💬

THE PAGE DXG HOMEPAGE

parent 75b3ef00
......@@ -1497,19 +1497,19 @@ export const constantRoutes = [
component: () => import('@/views/error/401'),
hidden: true
},
// {
// path: '',
// component: Layout,
// redirect: 'index',
// children: [
// {
// path: 'index',
// component: () => import('@/views/index'),
// name: 'Index',
// meta: { title: '首页', icon: 'dashboard', affix: true }
// }
// ]
// },
{
path: '',
component: Layout,
redirect: 'index',
children: [
{
path: 'index',
component: () => import('@/views/threeViolations/homePage/index'),
name: 'Index',
meta: { title: '首页', icon: 'dashboard', affix: true }
}
]
},
{
path: '/user',
component: Layout,
......
......@@ -159,70 +159,70 @@ const permission = {
/* 重置首页路由*/
// let hompePage = treeToList([...newCommonList,...newErpList,...newPowerRoutes]).filter(item=>item.mkid==localStorage.getItem('homeMkid'))
let ttlist = treeToList([...newCommonList, ...newErpList, ...newPowerRoutes])
let homePage = ttlist.filter(item => item.mkid == localStorage.getItem('homeMkid'))
/* 替换首页*/
if (homePage && homePage[0]) {
if (homePage[0].component) {
// Layout ParentView 组件特殊处理
if (homePage[0].component === 'Layout') {
homePage[0].component = Layout
} else if (homePage[0].component === 'ParentView') {
homePage[0].component = ParentView
} else if (homePage[0].component === 'InnerLink') {
homePage[0].component = InnerLink
} else {
if (homePage[0].commonComponent) {
// let homePage = ttlist.filter(item => item.mkid == localStorage.getItem('homeMkid'))
// /* 替换首页*/
// if (homePage && homePage[0]) {
// if (homePage[0].component) {
// // Layout ParentView 组件特殊处理
// if (homePage[0].component === 'Layout') {
// homePage[0].component = Layout
// } else if (homePage[0].component === 'ParentView') {
// homePage[0].component = ParentView
// } else if (homePage[0].component === 'InnerLink') {
// homePage[0].component = InnerLink
// } else {
// if (homePage[0].commonComponent) {
homePage[0].component = loadCommonView(homePage[0].component)
// homePage[0].component = loadCommonView(homePage[0].component)
} else if (homePage[0].erpComponent) {
homePage[0].component = loadErpView(homePage[0].component)
} else {
homePage[0].component = loadView(homePage[0].component)
}
// } else if (homePage[0].erpComponent) {
// homePage[0].component = loadErpView(homePage[0].component)
// } else {
// homePage[0].component = loadView(homePage[0].component)
// }
}
}
/* 移除默认路由*/
let newHome = {
path: '',
component: Layout,
redirect: 'index',
hidden: true,
children: [{
path: 'index',
component: homePage[0].component ,
name: 'Index',
meta: {
title: '首页',
icon: 'dashboard',
affix: true
}
}]
}
router.addRoutes([newHome])
constantRoutes.push(newHome)
}else{
let newHome= {
path: '',
component: Layout,
redirect: 'index',
hidden: true,
children: [{
path: 'index',
component: () => import('@/views/index'),
name: 'Index',
meta: {
title: '首页',
icon: 'dashboard',
affix: true
}
}]
}
router.addRoutes([newHome])
constantRoutes.push(newHome)
// }
// }
// /* 移除默认路由*/
// let newHome = {
// path: '',
// component: Layout,
// redirect: 'index',
// hidden: true,
// children: [{
// path: 'index',
// component: homePage[0].component ,
// name: 'Index',
// meta: {
// title: '首页',
// icon: 'dashboard',
// affix: true
// }
// }]
// }
// router.addRoutes([newHome])
// constantRoutes.push(newHome)
// }else{
// let newHome= {
// path: '',
// component: Layout,
// redirect: 'index',
// hidden: true,
// children: [{
// path: 'index',
// component: () => import('@/views/index'),
// name: 'Index',
// meta: {
// title: '首页',
// icon: 'dashboard',
// affix: true
// }
// }]
// }
// router.addRoutes([newHome])
// constantRoutes.push(newHome)
}
// }
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment