|
@@ -24,7 +24,7 @@ import Layout from '@/layout'
|
|
activeMenu: '/example/list' if set path, the sidebar will highlight the path you set
|
|
activeMenu: '/example/list' if set path, the sidebar will highlight the path you set
|
|
}
|
|
}
|
|
*/
|
|
*/
|
|
-const _import = require('./import-' + process.env.NODE_ENV)
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* constantRoutes
|
|
* constantRoutes
|
|
* a base page that does not have permission requirements
|
|
* a base page that does not have permission requirements
|
|
@@ -33,13 +33,13 @@ const _import = require('./import-' + process.env.NODE_ENV)
|
|
export const constantRoutes = [
|
|
export const constantRoutes = [
|
|
{
|
|
{
|
|
path: '/login',
|
|
path: '/login',
|
|
- component: _import('views/login/index'),
|
|
|
|
|
|
+ component: () => import('@/views/login/index'),
|
|
hidden: true
|
|
hidden: true
|
|
},
|
|
},
|
|
|
|
|
|
{
|
|
{
|
|
path: '/404',
|
|
path: '/404',
|
|
- component: _import('views/404'),
|
|
|
|
|
|
+ component: () => import('@/views/404'),
|
|
hidden: true
|
|
hidden: true
|
|
}
|
|
}
|
|
]
|
|
]
|
|
@@ -52,7 +52,7 @@ export const asyncRoutes = [
|
|
children: [{
|
|
children: [{
|
|
path: 'dashboard',
|
|
path: 'dashboard',
|
|
name: 'Dashboard',
|
|
name: 'Dashboard',
|
|
- component: _import('views/dashboard/index'),
|
|
|
|
|
|
+ component: () => import('@/views/dashboard/index'),
|
|
meta: { title: '首页', icon: 'dashboard' }
|
|
meta: { title: '首页', icon: 'dashboard' }
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
@@ -65,7 +65,7 @@ export const asyncRoutes = [
|
|
children: [{
|
|
children: [{
|
|
path: 'list',
|
|
path: 'list',
|
|
name: 'project',
|
|
name: 'project',
|
|
- component: _import('views/project/index'),
|
|
|
|
|
|
+ component: () => import('@/views/project/index'),
|
|
meta: { title: '项目列表', roleValue: 'project_list_show' }
|
|
meta: { title: '项目列表', roleValue: 'project_list_show' }
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
@@ -77,7 +77,7 @@ export const asyncRoutes = [
|
|
children: [{
|
|
children: [{
|
|
path: 'list',
|
|
path: 'list',
|
|
name: 'department',
|
|
name: 'department',
|
|
- component: _import('views/department/index'),
|
|
|
|
|
|
+ component: () => import('@/views/department/index'),
|
|
meta: { title: '部门列表', roleValue: 'department_list_show' }
|
|
meta: { title: '部门列表', roleValue: 'department_list_show' }
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
@@ -89,7 +89,7 @@ export const asyncRoutes = [
|
|
children: [{
|
|
children: [{
|
|
path: 'list',
|
|
path: 'list',
|
|
name: 'roles',
|
|
name: 'roles',
|
|
- component: _import('views/roles/index'),
|
|
|
|
|
|
+ component: () => import('@/views/roles/index'),
|
|
meta: { title: '角色列表', roleValue: 'roles_list_show' }
|
|
meta: { title: '角色列表', roleValue: 'roles_list_show' }
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
@@ -101,7 +101,7 @@ export const asyncRoutes = [
|
|
children: [{
|
|
children: [{
|
|
path: 'list',
|
|
path: 'list',
|
|
name: 'user',
|
|
name: 'user',
|
|
- component: _import('views/user/index'),
|
|
|
|
|
|
+ component: () => import('@/views/user/index'),
|
|
meta: { title: '用户列表', roleValue: 'user_list_show' }
|
|
meta: { title: '用户列表', roleValue: 'user_list_show' }
|
|
}]
|
|
}]
|
|
},
|
|
},
|
|
@@ -113,7 +113,7 @@ export const asyncRoutes = [
|
|
children: [{
|
|
children: [{
|
|
path: 'list',
|
|
path: 'list',
|
|
name: 'icon',
|
|
name: 'icon',
|
|
- component: _import('views/icons/index'),
|
|
|
|
|
|
+ component: () => import('@/views/icons/index'),
|
|
meta: { title: 'icon', icon: 'el-icon-s-grid' }
|
|
meta: { title: 'icon', icon: 'el-icon-s-grid' }
|
|
}]
|
|
}]
|
|
},
|
|
},
|