Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄瑜
VueElementTemplate
Commits
a932272b
Commit
a932272b
authored
Oct 26, 2017
by
Pan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor:router
parent
577e4dc1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
122 additions
and
85 deletions
+122
-85
index.js
src/router/index.js
+108
-73
Levelbar.vue
src/views/layout/components/Levelbar.vue
+4
-4
SidebarItem.vue
src/views/layout/components/SidebarItem.vue
+10
-8
No files found.
src/router/index.js
View file @
a932272b
...
@@ -11,30 +11,40 @@ import Layout from '../views/layout/Layout'
...
@@ -11,30 +11,40 @@ import Layout from '../views/layout/Layout'
/**
/**
* icon : the icon show in the sidebar
* icon : the icon show in the sidebar
* hidden : if `hidden:true` will not show in the sidebar
* hidden : if `hidden:true` will not show in the sidebar
* title : the name show in submenu and levelbar
* redirect : if `redirect:noredirect` will no redirct in the levelbar
* 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
* meta : { role: ['admin'] } will control the page role
**/
**/
export
const
constantRouterMap
=
[
export
const
constantRouterMap
=
[
{
path
:
'/login'
,
component
:
_import
(
'login/index'
),
hidden
:
true
},
{
path
:
'/login'
,
component
:
_import
(
'login/index'
),
hidden
:
true
},
{
path
:
'/authredirect'
,
component
:
_import
(
'login/authredirect'
),
hidden
:
true
},
{
path
:
'/authredirect'
,
component
:
_import
(
'login/authredirect'
),
hidden
:
true
},
{
path
:
'/404'
,
component
:
_import
(
'errorPage/404'
),
hidden
:
true
},
{
path
:
'/404'
,
component
:
_import
(
'errorPage/404'
),
hidden
:
true
},
{
path
:
'/401'
,
component
:
_import
(
'errorPage/401'
),
hidden
:
true
},
{
path
:
'/401'
,
component
:
_import
(
'errorPage/401'
),
hidden
:
true
},
{
{
path
:
'/'
,
path
:
'/'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/dashboard'
,
redirect
:
'/dashboard'
,
name
:
'首页'
,
hidden
:
true
,
hidden
:
true
,
children
:
[{
path
:
'dashboard'
,
component
:
_import
(
'dashboard/index'
)
}]
children
:
[{
path
:
'dashboard'
,
component
:
_import
(
'dashboard/index'
),
name
:
'dashboard'
,
meta
:
{
title
:
'首页'
}
}]
},
},
{
{
path
:
'/introduction'
,
path
:
'/introduction'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/introduction/index'
,
redirect
:
'/introduction/index'
,
icon
:
'people'
,
children
:
[{
noDropdown
:
true
,
path
:
'index'
,
children
:
[{
path
:
'index'
,
component
:
_import
(
'introduction/index'
),
name
:
'简述'
}]
component
:
_import
(
'introduction/index'
),
name
:
'introduction'
,
meta
:
{
title
:
'简述'
,
icon
:
'people'
}
}]
}
}
]
]
...
@@ -49,137 +59,162 @@ export const asyncRouterMap = [
...
@@ -49,137 +59,162 @@ export const asyncRouterMap = [
path
:
'/permission'
,
path
:
'/permission'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/permission/index'
,
redirect
:
'/permission/index'
,
name
:
'权限测试'
,
icon
:
'lock'
,
meta
:
{
role
:
[
'admin'
]
},
meta
:
{
role
:
[
'admin'
]
},
noDropdown
:
true
,
children
:
[{
children
:
[{
path
:
'index'
,
component
:
_import
(
'permission/index'
),
name
:
'权限测试页'
,
meta
:
{
role
:
[
'admin'
]
}}]
path
:
'index'
,
component
:
_import
(
'permission/index'
),
name
:
'permission'
,
meta
:
{
title
:
'权限测试页'
,
icon
:
'lock'
,
role
:
[
'admin'
]
}
}]
},
},
{
{
path
:
'/icon'
,
path
:
'/icon'
,
component
:
Layout
,
component
:
Layout
,
icon
:
'icon'
,
children
:
[{
noDropdown
:
true
,
path
:
'index'
,
children
:
[{
path
:
'index'
,
component
:
_import
(
'svg-icons/index'
),
name
:
'icons'
}]
component
:
_import
(
'svg-icons/index'
),
name
:
'icons'
,
meta
:
{
title
:
'图标'
,
icon
:
'icon'
}
}]
},
},
{
{
path
:
'/components'
,
path
:
'/components'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/components/index'
,
redirect
:
'/components/index'
,
name
:
'组件'
,
name
:
'components'
,
icon
:
'component'
,
meta
:
{
title
:
'组件'
,
icon
:
'component'
},
children
:
[
children
:
[
{
path
:
'index'
,
component
:
_import
(
'components/index'
),
name
:
'
介绍 '
},
{
path
:
'index'
,
component
:
_import
(
'components/index'
),
name
:
'
componentIndex'
,
meta
:
{
title
:
'介绍'
}
},
{
path
:
'tinymce'
,
component
:
_import
(
'components/tinymce'
),
name
:
'
富文本编辑器'
},
{
path
:
'tinymce'
,
component
:
_import
(
'components/tinymce'
),
name
:
'
tinymce'
,
meta
:
{
title
:
'富文本编辑器'
}
},
{
path
:
'markdown'
,
component
:
_import
(
'components/markdown'
),
name
:
'
Markdown'
},
{
path
:
'markdown'
,
component
:
_import
(
'components/markdown'
),
name
:
'
markdown'
,
meta
:
{
title
:
'Markdown'
}
},
{
path
:
'json
editor'
,
component
:
_import
(
'components/jsonEditor'
),
name
:
'JSON编辑器'
},
{
path
:
'json
-editor'
,
component
:
_import
(
'components/jsonEditor'
),
name
:
'jsonEditor'
,
meta
:
{
title
:
'JSON编辑器'
}
},
{
path
:
'dnd
list'
,
component
:
_import
(
'components/dndList'
),
name
:
'列表拖拽'
},
{
path
:
'dnd
-list'
,
component
:
_import
(
'components/dndList'
),
name
:
'dndList'
,
meta
:
{
title
:
'列表拖拽'
}
},
{
path
:
'splitpane'
,
component
:
_import
(
'components/splitpane'
),
name
:
'
SplitPane'
},
{
path
:
'splitpane'
,
component
:
_import
(
'components/splitpane'
),
name
:
'
splitpane'
,
meta
:
{
title
:
'SplitPane'
}
},
{
path
:
'avatar
upload'
,
component
:
_import
(
'components/avatarUpload'
),
name
:
'头像上传'
},
{
path
:
'avatar
-upload'
,
component
:
_import
(
'components/avatarUpload'
),
name
:
'avatar-upload'
,
meta
:
{
title
:
'头像上传'
}
},
{
path
:
'dropzone'
,
component
:
_import
(
'components/dropzone'
),
name
:
'
Dropzone'
},
{
path
:
'dropzone'
,
component
:
_import
(
'components/dropzone'
),
name
:
'
dropzone'
,
meta
:
{
title
:
'Dropzone'
}
},
{
path
:
'sticky'
,
component
:
_import
(
'components/sticky'
),
name
:
'
Sticky'
},
{
path
:
'sticky'
,
component
:
_import
(
'components/sticky'
),
name
:
'
sticky'
,
meta
:
{
title
:
'Sticky'
}
},
{
path
:
'count
to'
,
component
:
_import
(
'components/countTo'
),
name
:
'CountTo'
},
{
path
:
'count
-to'
,
component
:
_import
(
'components/countTo'
),
name
:
'count-to'
,
meta
:
{
title
:
'CountTo'
}
},
{
path
:
'mixin'
,
component
:
_import
(
'components/mixin'
),
name
:
'
小组件'
},
{
path
:
'mixin'
,
component
:
_import
(
'components/mixin'
),
name
:
'
componentMixin'
,
meta
:
{
title
:
'小组件'
}
},
{
path
:
'back
totop'
,
component
:
_import
(
'components/backToTop'
),
name
:
'返回顶部'
}
{
path
:
'back
-to-top'
,
component
:
_import
(
'components/backToTop'
),
name
:
'backToTop'
,
meta
:
{
title
:
'返回顶部'
}
}
]
]
},
},
{
{
path
:
'/charts'
,
path
:
'/charts'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/charts/index'
,
redirect
:
'/charts/index'
,
name
:
'图表'
,
name
:
'charts'
,
icon
:
'chart'
,
meta
:
{
title
:
'图表'
,
icon
:
'chart'
},
children
:
[
children
:
[
{
path
:
'index'
,
component
:
_import
(
'charts/index'
),
name
:
'
介绍'
},
{
path
:
'index'
,
component
:
_import
(
'charts/index'
),
name
:
'
chartsIndex'
,
meta
:
{
title
:
'介绍'
}
},
{
path
:
'keyboard'
,
component
:
_import
(
'charts/keyboard'
),
name
:
'
键盘图表'
},
{
path
:
'keyboard'
,
component
:
_import
(
'charts/keyboard'
),
name
:
'
keyboard'
,
meta
:
{
title
:
'键盘图表'
}
},
{
path
:
'keyboard2'
,
component
:
_import
(
'charts/keyboard2'
),
name
:
'
键盘图表2'
},
{
path
:
'keyboard2'
,
component
:
_import
(
'charts/keyboard2'
),
name
:
'
keyboard2'
,
meta
:
{
title
:
'键盘图表2'
}
},
{
path
:
'line'
,
component
:
_import
(
'charts/line'
),
name
:
'
折线图'
},
{
path
:
'line'
,
component
:
_import
(
'charts/line'
),
name
:
'
line'
,
meta
:
{
title
:
'折线图'
}
},
{
path
:
'mixchart'
,
component
:
_import
(
'charts/mixChart'
),
name
:
'
混合图表'
}
{
path
:
'mixchart'
,
component
:
_import
(
'charts/mixChart'
),
name
:
'
mixChart'
,
meta
:
{
title
:
'混合图表'
}
}
]
]
},
},
{
{
path
:
'/example'
,
path
:
'/example'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'noredirect'
,
redirect
:
'noredirect'
,
name
:
'综合实例'
,
name
:
'example'
,
icon
:
'example'
,
meta
:
{
title
:
'综合实例'
,
icon
:
'example'
},
children
:
[
children
:
[
{
{
path
:
'/example/table'
,
path
:
'/example/table'
,
component
:
_import
(
'example/table/index'
),
component
:
_import
(
'example/table/index'
),
redirect
:
'/example/table/table'
,
redirect
:
'/example/table/table'
,
name
:
'Table'
,
name
:
'Table'
,
icon
:
'table'
,
meta
:
{
title
:
'Table'
,
icon
:
'table'
},
children
:
[
children
:
[
{
path
:
'dynamic
table'
,
component
:
_import
(
'example/table/dynamictable/index'
),
name
:
'动态table'
},
{
path
:
'dynamic
-table'
,
component
:
_import
(
'example/table/dynamicTable/index'
),
name
:
'dynamicTable'
,
meta
:
{
title
:
'动态table'
}
},
{
path
:
'drag
table'
,
component
:
_import
(
'example/table/dragTable'
),
name
:
'拖拽table'
},
{
path
:
'drag
-table'
,
component
:
_import
(
'example/table/dragTable'
),
name
:
'dragTable'
,
meta
:
{
title
:
'拖拽table'
}
},
{
path
:
'inline
_edit_table'
,
component
:
_import
(
'example/table/inlineEditTable'
),
name
:
'table内编辑'
},
{
path
:
'inline
-edit-table'
,
component
:
_import
(
'example/table/inlineEditTable'
),
name
:
'inlineEditTable'
,
meta
:
{
title
:
'table内编辑'
}
},
{
path
:
'table'
,
component
:
_import
(
'example/table/table'
),
name
:
'
综合table'
}
{
path
:
'table'
,
component
:
_import
(
'example/table/table'
),
name
:
'
tableDemo'
,
meta
:
{
title
:
'综合table'
}
}
]
]
},
},
{
path
:
'
form/edit'
,
icon
:
'form'
,
component
:
_import
(
'example/form'
),
name
:
'编辑Form'
,
meta
:
{
isEdit
:
true
}},
{
path
:
'
tab/index'
,
icon
:
'tab'
,
component
:
_import
(
'example/tab/index'
),
name
:
'tab'
,
meta
:
{
title
:
'Tab'
}},
{
path
:
'form/
create'
,
icon
:
'form'
,
component
:
_import
(
'example/form'
),
name
:
'创建Form'
},
{
path
:
'form/
edit'
,
icon
:
'form'
,
component
:
_import
(
'example/form'
),
name
:
'formEdit'
,
meta
:
{
title
:
'编辑Form'
,
isEdit
:
true
}
},
{
path
:
'
tab/index'
,
icon
:
'tab'
,
component
:
_import
(
'example/tab/index'
),
name
:
'Tab'
}
{
path
:
'
form/create'
,
icon
:
'form'
,
component
:
_import
(
'example/form'
),
name
:
'FormCreate'
,
meta
:
{
title
:
'创建Form'
}
}
]
]
},
},
{
{
path
:
'/error'
,
path
:
'/error'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'noredirect'
,
redirect
:
'noredirect'
,
name
:
'错误页面'
,
name
:
'errorPages'
,
icon
:
'404'
,
meta
:
{
title
:
'错误页面'
,
icon
:
'404'
},
children
:
[
children
:
[
{
path
:
'401'
,
component
:
_import
(
'errorPage/401'
),
name
:
'401'
},
{
path
:
'401'
,
component
:
_import
(
'errorPage/401'
),
name
:
'401'
,
meta
:
{
title
:
'401'
}
},
{
path
:
'404'
,
component
:
_import
(
'errorPage/404'
),
name
:
'404'
}
{
path
:
'404'
,
component
:
_import
(
'errorPage/404'
),
name
:
'404'
,
meta
:
{
title
:
'404'
}
}
]
]
},
},
{
{
path
:
'/errlog'
,
path
:
'/err
or-
log'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'noredirect'
,
redirect
:
'noredirect'
,
name
:
'errlog'
,
children
:
[{
path
:
'log'
,
component
:
_import
(
'errlog/index'
),
name
:
'errorLog'
,
meta
:
{
title
:
'错误日志'
,
icon
:
'bug'
}}]
icon
:
'bug'
,
noDropdown
:
true
,
children
:
[{
path
:
'log'
,
component
:
_import
(
'errlog/index'
),
name
:
'错误日志'
}]
},
},
{
{
path
:
'/excel'
,
path
:
'/excel'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/excel/download'
,
redirect
:
'/excel/download'
,
name
:
'excel'
,
name
:
'excel'
,
icon
:
'excel'
,
meta
:
{
title
:
'excel'
,
icon
:
'excel'
},
children
:
[
children
:
[
{
path
:
'
download'
,
component
:
_import
(
'excel/index'
),
name
:
'export excel'
},
{
path
:
'
export-excel'
,
component
:
_import
(
'excel/index'
),
name
:
'exportExcel'
,
meta
:
{
title
:
'export excel'
}
},
{
path
:
'
download2'
,
component
:
_import
(
'excel/selectExcel'
),
name
:
'export selected'
},
{
path
:
'
export-selected-excel'
,
component
:
_import
(
'excel/selectExcel'
),
name
:
'selectExcel'
,
meta
:
{
title
:
'export selected'
}
},
{
path
:
'upload
'
,
component
:
_import
(
'excel/uploadExcel'
),
name
:
'upload excel'
}
{
path
:
'upload
-excel'
,
component
:
_import
(
'excel/uploadExcel'
),
name
:
'uploadExcel'
,
meta
:
{
title
:
'upload excel'
}
}
]
]
},
},
{
{
path
:
'/zip'
,
path
:
'/zip'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'/zip/download'
,
redirect
:
'/zip/download'
,
name
:
'zip'
,
children
:
[{
path
:
'download'
,
component
:
_import
(
'zip/index'
),
name
:
'exportZip'
,
meta
:
{
title
:
'zip'
,
icon
:
'zip'
}}]
icon
:
'zip'
,
children
:
[
{
path
:
'download'
,
component
:
_import
(
'zip/index'
),
name
:
'export zip'
}
]
},
},
{
{
path
:
'/theme'
,
path
:
'/theme'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'noredirect'
,
redirect
:
'noredirect'
,
name
:
'theme'
,
children
:
[{
path
:
'index'
,
component
:
_import
(
'theme/index'
),
name
:
'theme'
,
meta
:
{
title
:
'换肤'
,
icon
:
'theme'
}}]
icon
:
'theme'
,
noDropdown
:
true
,
children
:
[{
path
:
'index'
,
component
:
_import
(
'theme/index'
),
name
:
'换肤'
}]
},
},
{
{
path
:
'/clipboard'
,
path
:
'/clipboard'
,
component
:
Layout
,
component
:
Layout
,
redirect
:
'noredirect'
,
redirect
:
'noredirect'
,
icon
:
'clipboard'
,
children
:
[{
path
:
'index'
,
component
:
_import
(
'clipboard/index'
),
name
:
'clipboard'
,
meta
:
{
title
:
'clipboard'
,
icon
:
'clipboard'
}}]
noDropdown
:
true
,
children
:
[{
path
:
'index'
,
component
:
_import
(
'clipboard/index'
),
name
:
'clipboard'
}]
},
},
{
path
:
'*'
,
redirect
:
'/404'
,
hidden
:
true
}
{
path
:
'*'
,
redirect
:
'/404'
,
hidden
:
true
}
...
...
src/views/layout/components/Levelbar.vue
View file @
a932272b
<
template
>
<
template
>
<el-breadcrumb
class=
"app-levelbar"
separator=
"/"
>
<el-breadcrumb
class=
"app-levelbar"
separator=
"/"
>
<el-breadcrumb-item
v-for=
"(item,index) in levelList"
:key=
"item.path"
>
<el-breadcrumb-item
v-for=
"(item,index) in levelList"
:key=
"item.path"
v-if=
'item.meta.title'
>
<span
v-if=
'item.redirect==="noredirect"||index==levelList.length-1'
class=
"no-redirect"
>
{{
item
.
nam
e
}}
</span>
<span
v-if=
'item.redirect==="noredirect"||index==levelList.length-1'
class=
"no-redirect"
>
{{
item
.
meta
.
titl
e
}}
</span>
<router-link
v-else
:to=
"item.redirect||item.path"
>
{{
item
.
nam
e
}}
</router-link>
<router-link
v-else
:to=
"item.redirect||item.path"
>
{{
item
.
meta
.
titl
e
}}
</router-link>
</el-breadcrumb-item>
</el-breadcrumb-item>
</el-breadcrumb>
</el-breadcrumb>
</
template
>
</
template
>
...
@@ -22,7 +22,7 @@ export default {
...
@@ -22,7 +22,7 @@ export default {
let
matched
=
this
.
$route
.
matched
.
filter
(
item
=>
item
.
name
)
let
matched
=
this
.
$route
.
matched
.
filter
(
item
=>
item
.
name
)
const
first
=
matched
[
0
]
const
first
=
matched
[
0
]
if
(
first
&&
(
first
.
name
!==
'首页'
||
first
.
path
!==
''
))
{
if
(
first
&&
(
first
.
name
!==
'首页'
||
first
.
path
!==
''
))
{
matched
=
[{
name
:
'首页'
,
path
:
'/'
}].
concat
(
matched
)
matched
=
[{
path
:
'/'
,
meta
:
{
title
:
'首页'
}
}].
concat
(
matched
)
}
}
this
.
levelList
=
matched
this
.
levelList
=
matched
}
}
...
...
src/views/layout/components/SidebarItem.vue
View file @
a932272b
...
@@ -2,28 +2,30 @@
...
@@ -2,28 +2,30 @@
<div
class=
'menu-wrapper'
>
<div
class=
'menu-wrapper'
>
<template
v-for=
"item in routes"
>
<template
v-for=
"item in routes"
>
<router-link
v-if=
"!item.hidden&&item.
noDropdown&&item.children.length>0"
:to=
"item.path+'/'+item.children[0].path"
>
<router-link
v-if=
"!item.hidden&&item.
children&&item.children.length===1"
:to=
"item.path+'/'+item.children[0].path"
:key=
'item.children[0].name'
>
<el-menu-item
:index=
"item.path+'/'+item.children[0].path"
class=
'submenu-title-noDropdown'
>
<el-menu-item
:index=
"item.path+'/'+item.children[0].path"
class=
'submenu-title-noDropdown'
>
<svg-icon
v-if=
'item.icon'
:icon-class=
"item.icon"
></svg-icon><span>
{{
item
.
children
[
0
].
name
}}
</span>
<svg-icon
v-if=
'item.children[0].meta&&item.children[0].meta.icon'
:icon-class=
"item.children[0].meta.icon"
></svg-icon>
<span>
{{
item
.
children
[
0
].
meta
?
item
.
children
[
0
].
meta
.
title
:
'no title'
}}
</span>
</el-menu-item>
</el-menu-item>
</router-link>
</router-link>
<el-submenu
:index=
"item.name"
v-if=
"
!item.noDropdown&&!item.hidden"
>
<el-submenu
:index=
"item.name"
v-if=
"
item.children&&item.children.length>1&&!item.hidden"
:key=
'item.name'
>
<template
slot=
"title"
>
<template
slot=
"title"
>
<svg-icon
v-if=
'item.icon'
:icon-class=
"item.icon"
></svg-icon><span>
{{
item
.
name
}}
</span>
<svg-icon
v-if=
'item.meta&&item.meta.icon'
:icon-class=
"item.meta.icon"
></svg-icon>
<span>
{{
item
.
meta
?
item
.
meta
.
title
:
'no title'
}}
</span>
</
template
>
</
template
>
<
template
v-for=
"child in item.children"
v-if=
'!child.hidden'
>
<
template
v-for=
"child in item.children"
v-if=
'!child.hidden'
>
<sidebar-item
class=
'nest-menu'
v-if=
'child.children&&child.children.length>0'
:routes=
'[child]'
>
</sidebar-item>
<sidebar-item
class=
'nest-menu'
v-if=
'child.children&&child.children.length>0'
:routes=
'[child]'
:key=
'child.path'
>
</sidebar-item>
<router-link
v-else
:to=
"item.path+'/'+child.path"
>
<router-link
v-else
:to=
"item.path+'/'+child.path"
:key=
'child.name'
>
<el-menu-item
:index=
"item.path+'/'+child.path"
>
<el-menu-item
:index=
"item.path+'/'+child.path"
>
<svg-icon
v-if=
'child.icon'
:icon-class=
"child.icon"
></svg-icon><span>
{{
child
.
name
}}
</span>
<svg-icon
v-if=
'child.meta&&child.meta.icon'
:icon-class=
"child.meta.icon"
></svg-icon>
<span
v-if=
'child.meta'
>
{{
child
.
meta
.
title
}}
</span>
</el-menu-item>
</el-menu-item>
</router-link>
</router-link>
</
template
>
</
template
>
</el-submenu>
</el-submenu>
</template>
</template>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment