Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
admin-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
admin-fe
Commits
69fc52d4
Commit
69fc52d4
authored
7 years ago
by
Pan
Committed by
花裤衩
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
refine router.js
parent
d78b4980
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/router/index.js
+65
-122
65 additions, 122 deletions
src/router/index.js
with
65 additions
and
122 deletions
src/router/index.js
+
65
−
122
View file @
69fc52d4
...
...
@@ -3,89 +3,30 @@ import Router from 'vue-router';
const
_import
=
require
(
'
./_import_
'
+
process
.
env
.
NODE_ENV
);
// in development env not use Lazy Loading,because Lazy Loading large page will cause webpack hot update too slow.so only in production use Lazy Loading
/* layout */
import
Layout
from
'
../views/layout/Layout
'
;
/* login */
const
Login
=
_import
(
'
login/index
'
);
const
authRedirect
=
_import
(
'
login/authredirect
'
);
/* dashboard */
const
dashboard
=
_import
(
'
dashboard/index
'
);
/* Introduction */
const
Introduction
=
_import
(
'
introduction/index
'
);
/* components */
const
componentsIndex
=
_import
(
'
components/index
'
);
const
Tinymce
=
_import
(
'
components/tinymce
'
);
const
Markdown
=
_import
(
'
components/markdown
'
);
const
JsonEditor
=
_import
(
'
components/jsoneditor
'
);
const
DndList
=
_import
(
'
components/dndlist
'
);
const
AvatarUpload
=
_import
(
'
components/avatarUpload
'
);
const
Dropzone
=
_import
(
'
components/dropzone
'
);
const
Sticky
=
_import
(
'
components/sticky
'
);
const
SplitPane
=
_import
(
'
components/splitpane
'
);
const
CountTo
=
_import
(
'
components/countTo
'
);
const
Mixin
=
_import
(
'
components/mixin
'
);
const
BackToTop
=
_import
(
'
components/backToTop
'
)
/* charts */
const
chartIndex
=
_import
(
'
charts/index
'
);
const
KeyboardChart
=
_import
(
'
charts/keyboard
'
);
const
KeyboardChart2
=
_import
(
'
charts/keyboard2
'
);
const
LineMarker
=
_import
(
'
charts/line
'
);
const
MixChart
=
_import
(
'
charts/mixChart
'
);
/* error page */
const
Err404
=
_import
(
'
error/404
'
);
const
Err401
=
_import
(
'
error/401
'
);
/* error log */
const
ErrorLog
=
_import
(
'
errlog/index
'
);
/* excel */
const
ExcelDownload
=
_import
(
'
excel/index
'
);
const
SelectExcelDownload
=
_import
(
'
excel/selectExcel
'
);
/* theme */
const
Theme
=
_import
(
'
theme/index
'
);
/* example */
const
TableLayout
=
_import
(
'
example/table/index
'
);
const
DynamicTable
=
_import
(
'
example/table/dynamictable
'
);
const
Table
=
_import
(
'
example/table/table
'
);
const
DragTable
=
_import
(
'
example/table/dragTable
'
);
const
InlineEditTable
=
_import
(
'
example/table/inlineEditTable
'
);
const
Form
=
_import
(
'
example/form
'
);
const
Tab
=
_import
(
'
example/tab/index
'
);
/* permission */
const
Permission
=
_import
(
'
permission/index
'
);
Vue
.
use
(
Router
);
/**
* icon : the icon show in the sidebar
* hidden : if hidden:true will not show in the sidebar
* redirect : if redirect:noredirect will not redirct in the levelbar
* noDropdown : if noDropdown:true will not has submenu
* meta : { role: ['admin'] } will control the page role
**/
/* layout */
import
Layout
from
'
../views/layout/Layout
'
;
/**
* icon : the icon show in the sidebar
* hidden : if `hidden:true` will not show in the sidebar
* redirect : if `redirect:noredirect` will no redirct in the levelbar
* noDropdown : if `noDropdown:true` will has no submenu
* meta : { role: ['admin'] } will control the page role
**/
export
const
constantRouterMap
=
[
{
path
:
'
/login
'
,
component
:
Login
,
hidden
:
true
},
{
path
:
'
/authredirect
'
,
component
:
auth
R
edirect
,
hidden
:
true
},
{
path
:
'
/404
'
,
component
:
Err
404
,
hidden
:
true
},
{
path
:
'
/401
'
,
component
:
Err
401
,
hidden
:
true
},
{
path
:
'
/login
'
,
component
:
_import
(
'
login/index
'
)
,
hidden
:
true
},
{
path
:
'
/authredirect
'
,
component
:
_import
(
'
login/
auth
r
edirect
'
)
,
hidden
:
true
},
{
path
:
'
/404
'
,
component
:
_import
(
'
error/
404
'
)
,
hidden
:
true
},
{
path
:
'
/401
'
,
component
:
_import
(
'
error/
401
'
)
,
hidden
:
true
},
{
path
:
'
/
'
,
component
:
Layout
,
redirect
:
'
/dashboard
'
,
name
:
'
首页
'
,
hidden
:
true
,
children
:
[{
path
:
'
dashboard
'
,
component
:
dashboard
}]
children
:
[{
path
:
'
dashboard
'
,
component
:
_import
(
'
dashboard
/index
'
)
}]
},
{
path
:
'
/introduction
'
,
...
...
@@ -93,7 +34,7 @@ export const constantRouterMap = [
redirect
:
'
/introduction/index
'
,
icon
:
'
xinrenzhinan
'
,
noDropdown
:
true
,
children
:
[{
path
:
'
index
'
,
component
:
I
ntroduction
,
name
:
'
简述
'
}]
children
:
[{
path
:
'
index
'
,
component
:
_import
(
'
i
ntroduction
/index
'
)
,
name
:
'
简述
'
}]
}
]
...
...
@@ -112,7 +53,7 @@ export const asyncRouterMap = [
icon
:
'
quanxian
'
,
meta
:
{
role
:
[
'
admin
'
]
},
noDropdown
:
true
,
children
:
[{
path
:
'
index
'
,
component
:
P
ermission
,
name
:
'
权限测试页
'
,
meta
:
{
role
:
[
'
admin
'
]
}
}]
children
:
[{
path
:
'
index
'
,
component
:
_import
(
'
p
ermission
/index
'
)
,
name
:
'
权限测试页
'
,
meta
:
{
role
:
[
'
admin
'
]
}
}]
},
{
path
:
'
/components
'
,
...
...
@@ -121,18 +62,18 @@ export const asyncRouterMap = [
name
:
'
组件
'
,
icon
:
'
zujian
'
,
children
:
[
{
path
:
'
index
'
,
component
:
components
I
ndex
,
name
:
'
介绍
'
},
{
path
:
'
tinymce
'
,
component
:
T
inymce
,
name
:
'
富文本编辑器
'
},
{
path
:
'
markdown
'
,
component
:
M
arkdown
,
name
:
'
Markdown
'
},
{
path
:
'
jsoneditor
'
,
component
:
J
son
E
ditor
,
name
:
'
JSON编辑器
'
},
{
path
:
'
dndlist
'
,
component
:
DndL
ist
,
name
:
'
列表拖拽
'
},
{
path
:
'
splitpane
'
,
component
:
S
plit
P
ane
,
name
:
'
SplitPane
'
},
{
path
:
'
avatarupload
'
,
component
:
A
vatarUpload
,
name
:
'
头像上传
'
},
{
path
:
'
dropzone
'
,
component
:
D
ropzone
,
name
:
'
Dropzone
'
},
{
path
:
'
sticky
'
,
component
:
S
ticky
,
name
:
'
Sticky
'
},
{
path
:
'
countto
'
,
component
:
C
ountTo
,
name
:
'
CountTo
'
},
{
path
:
'
mixin
'
,
component
:
M
ixin
,
name
:
'
小组件
'
},
{
path
:
'
backtotop
'
,
component
:
B
ackToTop
,
name
:
'
返回顶部
'
}
{
path
:
'
index
'
,
component
:
_import
(
'
components
/i
ndex
'
)
,
name
:
'
介绍
'
},
{
path
:
'
tinymce
'
,
component
:
_import
(
'
components/t
inymce
'
)
,
name
:
'
富文本编辑器
'
},
{
path
:
'
markdown
'
,
component
:
_import
(
'
components/m
arkdown
'
)
,
name
:
'
Markdown
'
},
{
path
:
'
jsoneditor
'
,
component
:
_import
(
'
components/j
son
e
ditor
'
)
,
name
:
'
JSON编辑器
'
},
{
path
:
'
dndlist
'
,
component
:
_import
(
'
components/dndl
ist
'
)
,
name
:
'
列表拖拽
'
},
{
path
:
'
splitpane
'
,
component
:
_import
(
'
components/s
plit
p
ane
'
)
,
name
:
'
SplitPane
'
},
{
path
:
'
avatarupload
'
,
component
:
_import
(
'
components/a
vatarUpload
'
)
,
name
:
'
头像上传
'
},
{
path
:
'
dropzone
'
,
component
:
_import
(
'
components/d
ropzone
'
)
,
name
:
'
Dropzone
'
},
{
path
:
'
sticky
'
,
component
:
_import
(
'
components/s
ticky
'
)
,
name
:
'
Sticky
'
},
{
path
:
'
countto
'
,
component
:
_import
(
'
components/c
ountTo
'
)
,
name
:
'
CountTo
'
},
{
path
:
'
mixin
'
,
component
:
_import
(
'
components/m
ixin
'
)
,
name
:
'
小组件
'
},
{
path
:
'
backtotop
'
,
component
:
_import
(
'
components/b
ackToTop
'
)
,
name
:
'
返回顶部
'
}
]
},
{
...
...
@@ -142,11 +83,37 @@ export const asyncRouterMap = [
name
:
'
图表
'
,
icon
:
'
tubiaoleixingzhengchang
'
,
children
:
[
{
path
:
'
index
'
,
component
:
chartIndex
,
name
:
'
介绍
'
},
{
path
:
'
keyboard
'
,
component
:
KeyboardChart
,
name
:
'
键盘图表
'
},
{
path
:
'
keyboard2
'
,
component
:
KeyboardChart2
,
name
:
'
键盘图表2
'
},
{
path
:
'
line
'
,
component
:
LineMarker
,
name
:
'
折线图
'
},
{
path
:
'
mixchart
'
,
component
:
MixChart
,
name
:
'
混合图表
'
}
{
path
:
'
index
'
,
component
:
_import
(
'
charts/index
'
),
name
:
'
介绍
'
},
{
path
:
'
keyboard
'
,
component
:
_import
(
'
charts/keyboard
'
),
name
:
'
键盘图表
'
},
{
path
:
'
keyboard2
'
,
component
:
_import
(
'
charts/keyboard2
'
),
name
:
'
键盘图表2
'
},
{
path
:
'
line
'
,
component
:
_import
(
'
charts/line
'
),
name
:
'
折线图
'
},
{
path
:
'
mixchart
'
,
component
:
_import
(
'
charts/mixChart
'
),
name
:
'
混合图表
'
}
]
},
{
path
:
'
/example
'
,
component
:
Layout
,
redirect
:
'
noredirect
'
,
name
:
'
综合实例
'
,
icon
:
'
zonghe
'
,
children
:
[
{
path
:
'
/example/table
'
,
component
:
_import
(
'
example/table/index
'
),
redirect
:
'
/example/table/table
'
,
name
:
'
Table
'
,
icon
:
'
table
'
,
children
:
[
{
path
:
'
dynamictable
'
,
component
:
_import
(
'
example/table/dynamictable
'
),
name
:
'
动态table
'
},
{
path
:
'
dragtable
'
,
component
:
_import
(
'
example/table/dragTable
'
),
name
:
'
拖拽table
'
},
{
path
:
'
inline_edit_table
'
,
component
:
_import
(
'
example/table/inlineEditTable
'
),
name
:
'
table内编辑
'
},
{
path
:
'
table
'
,
component
:
_import
(
'
example/table/table
'
),
name
:
'
综合table
'
}
]
},
{
path
:
'
form/edit
'
,
icon
:
'
ziliaoshouce
'
,
component
:
_import
(
'
example/form
'
),
name
:
'
编辑Form
'
,
meta
:
{
isEdit
:
true
}
},
{
path
:
'
form/create
'
,
icon
:
'
yinhangqia
'
,
component
:
_import
(
'
example/form
'
),
name
:
'
创建Form
'
},
{
path
:
'
tab/index
'
,
icon
:
'
mobankuangjia
'
,
component
:
_import
(
'
example/tab/index
'
),
name
:
'
Tab
'
}
]
},
{
...
...
@@ -156,8 +123,8 @@ export const asyncRouterMap = [
name
:
'
错误页面
'
,
icon
:
'
404
'
,
children
:
[
{
path
:
'
401
'
,
component
:
Err
401
,
name
:
'
401
'
},
{
path
:
'
404
'
,
component
:
Err
404
,
name
:
'
404
'
}
{
path
:
'
401
'
,
component
:
_import
(
'
error/
401
'
)
,
name
:
'
401
'
},
{
path
:
'
404
'
,
component
:
_import
(
'
error/
404
'
)
,
name
:
'
404
'
}
]
},
{
...
...
@@ -167,7 +134,7 @@ export const asyncRouterMap = [
name
:
'
errlog
'
,
icon
:
'
bug
'
,
noDropdown
:
true
,
children
:
[{
path
:
'
log
'
,
component
:
ErrorLog
,
name
:
'
错误日志
'
}]
children
:
[{
path
:
'
log
'
,
component
:
_import
(
'
errlog/index
'
)
,
name
:
'
错误日志
'
}]
},
{
path
:
'
/excel
'
,
...
...
@@ -176,8 +143,8 @@ export const asyncRouterMap = [
name
:
'
excel
'
,
icon
:
'
EXCEL
'
,
children
:
[
{
path
:
'
download
'
,
component
:
ExcelDownload
,
name
:
'
导出excel
'
},
{
path
:
'
download2
'
,
component
:
S
electExcel
Download
,
name
:
'
选择导出excel
'
}
{
path
:
'
download
'
,
component
:
_import
(
'
excel/index
'
)
,
name
:
'
导出excel
'
},
{
path
:
'
download2
'
,
component
:
_import
(
'
excel/s
electExcel
'
)
,
name
:
'
选择导出excel
'
}
]
},
{
...
...
@@ -187,32 +154,8 @@ export const asyncRouterMap = [
name
:
'
theme
'
,
icon
:
'
theme
'
,
noDropdown
:
true
,
children
:
[{
path
:
'
index
'
,
component
:
Theme
,
name
:
'
换肤
'
}]
children
:
[{
path
:
'
index
'
,
component
:
_import
(
'
theme/index
'
)
,
name
:
'
换肤
'
}]
},
{
path
:
'
/example
'
,
component
:
Layout
,
redirect
:
'
noredirect
'
,
name
:
'
综合实例
'
,
icon
:
'
zonghe
'
,
children
:
[
{
path
:
'
/example/table
'
,
component
:
TableLayout
,
redirect
:
'
/example/table/table
'
,
name
:
'
Table
'
,
children
:
[
{
path
:
'
dynamictable
'
,
component
:
DynamicTable
,
name
:
'
动态table
'
},
{
path
:
'
dragtable
'
,
component
:
DragTable
,
name
:
'
拖拽table
'
},
{
path
:
'
inline_edit_table
'
,
component
:
InlineEditTable
,
name
:
'
table内编辑
'
},
{
path
:
'
table
'
,
component
:
Table
,
name
:
'
综合table
'
}
]
},
{
path
:
'
form/edit
'
,
component
:
Form
,
name
:
'
编辑Form
'
,
meta
:
{
isEdit
:
true
}
},
{
path
:
'
form/create
'
,
component
:
Form
,
name
:
'
创建Form
'
},
{
path
:
'
tab/index
'
,
component
:
Tab
,
name
:
'
Tab
'
}
]
},
{
path
:
'
*
'
,
redirect
:
'
/404
'
,
hidden
:
true
}
];
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment