admin-fe/src/router/index.js

274 lines
10 KiB
JavaScript
Raw Normal View History

2017-08-22 07:43:34 +00:00
import Vue from 'vue'
import Router from 'vue-router'
const _import = require('./_import_' + process.env.NODE_ENV)
2017-11-17 06:57:39 +00:00
// in development-env not use lazy-loading, because lazy-loading too many pages will cause webpack hot update too slow. so only in production use lazy-loading;
// detail: https://panjiachen.github.io/vue-element-admin-site/#/lazy-loading
2017-04-18 07:09:13 +00:00
2017-08-22 07:43:34 +00:00
Vue.use(Router)
2017-04-18 07:09:13 +00:00
2017-11-17 06:57:39 +00:00
/* Layout */
2017-08-22 07:43:34 +00:00
import Layout from '../views/layout/Layout'
2017-05-17 08:26:33 +00:00
/** note: submenu only apppear when children.length>=1
* detail see https://panjiachen.github.io/vue-element-admin-site/#/router-and-nav?id=sidebar
**/
2017-07-28 07:12:32 +00:00
/**
2017-11-17 06:57:39 +00:00
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
2018-01-24 06:47:20 +00:00
* alwaysShow: true if set true, will always show the root menu, whatever its child routes length
* if not set alwaysShow, only more than one route under the children
* it will becomes nested mode, otherwise not show the root menu
2017-11-17 06:57:39 +00:00
* redirect: noredirect if `redirect:noredirect` will no redirct in the breadcrumb
* name:'router-name' the name is used by <keep-alive> (must set!!!)
* meta : {
2018-01-05 03:38:34 +00:00
roles: ['admin','editor'] will control the page roles (you can set multiple roles)
2017-11-17 06:57:39 +00:00
title: 'title' the name show in submenu and breadcrumb (recommend set)
icon: 'svg-name' the icon show in the sidebar,
2018-02-27 02:21:53 +00:00
noCache: true if true ,the page will no be cached(default is false)
}
2017-07-28 07:12:32 +00:00
**/
2017-05-17 08:26:33 +00:00
export const constantRouterMap = [
2017-10-26 10:27:39 +00:00
{ path: '/login', component: _import('login/index'), hidden: true },
{ path: '/authredirect', component: _import('login/authredirect'), hidden: true },
{ path: '/404', component: _import('errorPage/404'), hidden: true },
{ path: '/401', component: _import('errorPage/401'), hidden: true },
2017-05-17 08:26:33 +00:00
{
2017-11-02 09:58:35 +00:00
path: '',
2017-05-17 08:26:33 +00:00
component: Layout,
2017-11-02 09:58:35 +00:00
redirect: 'dashboard',
2017-10-26 10:27:39 +00:00
children: [{
path: 'dashboard',
component: _import('dashboard/index'),
name: 'dashboard',
2017-11-22 02:01:53 +00:00
meta: { title: 'dashboard', icon: 'dashboard', noCache: true }
2017-10-26 10:27:39 +00:00
}]
2017-05-17 08:26:33 +00:00
},
{
2017-11-17 06:57:39 +00:00
path: '/documentation',
2017-05-17 08:26:33 +00:00
component: Layout,
2017-11-17 06:57:39 +00:00
redirect: '/documentation/index',
2017-10-26 10:27:39 +00:00
children: [{
path: 'index',
2017-11-17 06:57:39 +00:00
component: _import('documentation/index'),
name: 'documentation',
meta: { title: 'documentation', icon: 'documentation', noCache: true }
2017-10-26 10:27:39 +00:00
}]
},
{
path: '/guide',
component: Layout,
redirect: '/guide/index',
children: [{
path: 'index',
component: _import('guide/index'),
name: 'guide',
meta: { title: 'guide', icon: 'guide', noCache: true }
}]
2017-05-17 08:26:33 +00:00
}
]
export default new Router({
2018-01-05 03:38:34 +00:00
// mode: 'history', // require service support
2017-05-17 08:26:33 +00:00
scrollBehavior: () => ({ y: 0 }),
routes: constantRouterMap
2017-08-22 07:43:34 +00:00
})
2017-05-17 08:26:33 +00:00
export const asyncRouterMap = [
{
path: '/permission',
component: Layout,
redirect: '/permission/index',
alwaysShow: true, // will always show the root menu
meta: {
title: 'permission',
icon: 'lock',
roles: ['admin', 'editor'] // you can set roles in root nav
},
2017-10-26 10:27:39 +00:00
children: [{
path: 'page',
component: _import('permission/page'),
name: 'pagePermission',
2017-10-26 10:27:39 +00:00
meta: {
title: 'pagePermission',
2018-01-05 03:38:34 +00:00
roles: ['admin'] // or you can only set roles in sub nav
2017-10-26 10:27:39 +00:00
}
}, {
path: 'directive',
component: _import('permission/directive'),
name: 'directivePermission',
meta: {
title: 'directivePermission'
// if do not set roles, means: this page does not require permission
}
2017-10-26 10:27:39 +00:00
}]
2017-05-17 08:26:33 +00:00
},
2017-10-26 10:27:39 +00:00
2017-08-29 09:53:41 +00:00
{
path: '/icon',
component: Layout,
2017-10-26 10:27:39 +00:00
children: [{
path: 'index',
component: _import('svg-icons/index'),
name: 'icons',
2017-11-17 06:57:39 +00:00
meta: { title: 'icons', icon: 'icon', noCache: true }
2017-10-26 10:27:39 +00:00
}]
2017-08-29 09:53:41 +00:00
},
2017-10-26 10:27:39 +00:00
2017-05-17 08:26:33 +00:00
{
path: '/components',
component: Layout,
2017-11-24 07:35:38 +00:00
redirect: 'noredirect',
2017-11-17 09:51:41 +00:00
name: 'component-demo',
2017-10-26 10:27:39 +00:00
meta: {
2017-11-03 10:37:49 +00:00
title: 'components',
2017-10-26 10:27:39 +00:00
icon: 'component'
},
2017-05-17 08:26:33 +00:00
children: [
2017-11-17 09:51:41 +00:00
{ path: 'tinymce', component: _import('components-demo/tinymce'), name: 'tinymce-demo', meta: { title: 'tinymce' }},
{ path: 'markdown', component: _import('components-demo/markdown'), name: 'markdown-demo', meta: { title: 'markdown' }},
{ path: 'json-editor', component: _import('components-demo/jsonEditor'), name: 'jsonEditor-demo', meta: { title: 'jsonEditor' }},
{ path: 'splitpane', component: _import('components-demo/splitpane'), name: 'splitpane-demo', meta: { title: 'splitPane' }},
{ path: 'avatar-upload', component: _import('components-demo/avatarUpload'), name: 'avatarUpload-demo', meta: { title: 'avatarUpload' }},
{ path: 'dropzone', component: _import('components-demo/dropzone'), name: 'dropzone-demo', meta: { title: 'dropzone' }},
{ path: 'sticky', component: _import('components-demo/sticky'), name: 'sticky-demo', meta: { title: 'sticky' }},
{ path: 'count-to', component: _import('components-demo/countTo'), name: 'countTo-demo', meta: { title: 'countTo' }},
{ path: 'mixin', component: _import('components-demo/mixin'), name: 'componentMixin-demo', meta: { title: 'componentMixin' }},
2018-04-13 05:32:53 +00:00
{ path: 'back-to-top', component: _import('components-demo/backToTop'), name: 'backToTop-demo', meta: { title: 'backToTop' }},
{ path: 'drag-dialog', component: _import('components-demo/dragDialog'), name: 'dragDialog-demo', meta: { title: 'dragDialog' }},
{ path: 'dnd-list', component: _import('components-demo/dndList'), name: 'dndList-demo', meta: { title: 'dndList' }},
{ path: 'drag-kanban', component: _import('components-demo/dragKanban'), name: 'dragKanban-demo', meta: { title: 'dragKanban' }}
2017-05-17 08:26:33 +00:00
]
},
2017-10-26 10:27:39 +00:00
2017-05-17 08:26:33 +00:00
{
path: '/charts',
component: Layout,
2017-11-24 07:35:38 +00:00
redirect: 'noredirect',
2017-10-26 10:27:39 +00:00
name: 'charts',
meta: {
2017-11-03 10:37:49 +00:00
title: 'charts',
2017-10-26 10:27:39 +00:00
icon: 'chart'
},
2017-05-17 08:26:33 +00:00
children: [
2017-11-17 07:07:21 +00:00
{ path: 'keyboard', component: _import('charts/keyboard'), name: 'keyboardChart', meta: { title: 'keyboardChart', noCache: true }},
{ path: 'line', component: _import('charts/line'), name: 'lineChart', meta: { title: 'lineChart', noCache: true }},
{ path: 'mixchart', component: _import('charts/mixChart'), name: 'mixChart', meta: { title: 'mixChart', noCache: true }}
2017-07-28 07:12:32 +00:00
]
},
2017-10-26 10:27:39 +00:00
2017-07-28 07:12:32 +00:00
{
path: '/tab',
2017-07-28 07:12:32 +00:00
component: Layout,
children: [{
path: 'index',
component: _import('tab/index'),
name: 'tab',
meta: { title: 'tab', icon: 'tab' }
}]
},
{
path: '/table',
component: Layout,
redirect: '/table/complex-table',
name: 'table',
2017-10-26 10:27:39 +00:00
meta: {
title: 'Table',
icon: 'table'
2017-10-26 10:27:39 +00:00
},
2017-07-28 07:12:32 +00:00
children: [
{ path: 'dynamic-table', component: _import('table/dynamicTable/index'), name: 'dynamicTable', meta: { title: 'dynamicTable' }},
{ path: 'drag-table', component: _import('table/dragTable'), name: 'dragTable', meta: { title: 'dragTable' }},
{ path: 'inline-edit-table', component: _import('table/inlineEditTable'), name: 'inlineEditTable', meta: { title: 'inlineEditTable' }},
{ path: 'tree-table', component: _import('table/treeTable/treeTable'), name: 'treeTableDemo', meta: { title: 'treeTable' }},
{ path: 'custom-tree-table', component: _import('table/treeTable/customTreeTable'), name: 'customTreeTableDemo', meta: { title: 'customTreeTable' }},
{ path: 'complex-table', component: _import('table/complexTable'), name: 'complexTable', meta: { title: 'complexTable' }}
]
},
{
path: '/example',
component: Layout,
redirect: '/example/list',
name: 'example',
meta: {
title: 'example',
icon: 'example'
},
children: [
{ path: 'create', component: _import('example/create'), name: 'createArticle', meta: { title: 'createArticle', icon: 'edit' }},
{ path: 'edit/:id(\\d+)', component: _import('example/edit'), name: 'editArticle', meta: { title: 'editArticle', noCache: true }, hidden: true },
{ path: 'list', component: _import('example/list'), name: 'articleList', meta: { title: 'articleList', icon: 'list' }}
2017-05-17 08:26:33 +00:00
]
},
2017-10-26 10:27:39 +00:00
2017-05-17 08:26:33 +00:00
{
2017-08-22 10:47:23 +00:00
path: '/error',
2017-05-17 08:26:33 +00:00
component: Layout,
redirect: 'noredirect',
2017-10-26 10:27:39 +00:00
name: 'errorPages',
meta: {
2017-11-03 10:37:49 +00:00
title: 'errorPages',
2017-10-26 10:27:39 +00:00
icon: '404'
},
2017-05-17 08:26:33 +00:00
children: [
2017-11-03 10:37:49 +00:00
{ path: '401', component: _import('errorPage/401'), name: 'page401', meta: { title: 'page401', noCache: true }},
{ path: '404', component: _import('errorPage/404'), name: 'page404', meta: { title: 'page404', noCache: true }}
2017-05-17 08:26:33 +00:00
]
},
2017-10-26 10:27:39 +00:00
2017-05-17 08:26:33 +00:00
{
2017-10-26 10:27:39 +00:00
path: '/error-log',
2017-05-17 08:26:33 +00:00
component: Layout,
redirect: 'noredirect',
2017-11-03 10:37:49 +00:00
children: [{ path: 'log', component: _import('errorLog/index'), name: 'errorLog', meta: { title: 'errorLog', icon: 'bug' }}]
2017-05-17 08:26:33 +00:00
},
2017-10-26 10:27:39 +00:00
2017-05-17 08:26:33 +00:00
{
path: '/excel',
component: Layout,
2017-11-24 07:35:38 +00:00
redirect: '/excel/export-excel',
2017-05-17 08:26:33 +00:00
name: 'excel',
2017-10-26 10:27:39 +00:00
meta: {
title: 'excel',
icon: 'excel'
},
2017-07-25 08:51:43 +00:00
children: [
2017-11-23 02:35:54 +00:00
{ path: 'export-excel', component: _import('excel/exportExcel'), name: 'exportExcel', meta: { title: 'exportExcel' }},
{ path: 'export-selected-excel', component: _import('excel/selectExcel'), name: 'selectExcel', meta: { title: 'selectExcel' }},
{ path: 'upload-excel', component: _import('excel/uploadExcel'), name: 'uploadExcel', meta: { title: 'uploadExcel' }}
2017-07-25 08:51:43 +00:00
]
2017-05-17 08:26:33 +00:00
},
2017-10-26 10:27:39 +00:00
2017-09-26 05:40:07 +00:00
{
path: '/zip',
component: Layout,
redirect: '/zip/download',
2018-01-24 06:47:20 +00:00
alwaysShow: true,
meta: { title: 'zip', icon: 'zip' },
children: [{ path: 'download', component: _import('zip/index'), name: 'exportZip', meta: { title: 'exportZip' }}]
2017-09-26 05:40:07 +00:00
},
2017-10-26 10:27:39 +00:00
2017-05-17 08:26:33 +00:00
{
path: '/theme',
component: Layout,
redirect: 'noredirect',
2017-11-03 10:37:49 +00:00
children: [{ path: 'index', component: _import('theme/index'), name: 'theme', meta: { title: 'theme', icon: 'theme' }}]
2017-05-17 08:26:33 +00:00
},
2017-10-26 10:27:39 +00:00
2017-09-27 02:03:42 +00:00
{
path: '/clipboard',
component: Layout,
redirect: 'noredirect',
2017-11-03 10:37:49 +00:00
children: [{ path: 'index', component: _import('clipboard/index'), name: 'clipboardDemo', meta: { title: 'clipboardDemo', icon: 'clipboard' }}]
},
{
path: '/i18n',
component: Layout,
2017-11-17 03:36:49 +00:00
children: [{ path: 'index', component: _import('i18n-demo/index'), name: 'i18n', meta: { title: 'i18n', icon: 'international' }}]
2017-09-27 02:03:42 +00:00
},
2017-06-15 06:33:02 +00:00
2017-05-17 08:26:33 +00:00
{ path: '*', redirect: '/404', hidden: true }
2017-08-22 07:43:34 +00:00
]