update menu
This commit is contained in:
parent
895072732c
commit
0722b05c06
|
@ -18,10 +18,10 @@ export default [
|
||||||
authority: ['admin', 'user'],
|
authority: ['admin', 'user'],
|
||||||
routes: [
|
routes: [
|
||||||
// dashboard
|
// dashboard
|
||||||
{ path: '/', redirect: '/dashboard/analysis' },
|
{ path: '/', redirect: '/platform' },
|
||||||
{
|
{
|
||||||
path: '/dashboard',
|
path: '/platform',
|
||||||
name: 'dashboard',
|
name: 'platform',
|
||||||
icon: 'dashboard',
|
icon: 'dashboard',
|
||||||
component: './Dashboard/Analysis',
|
component: './Dashboard/Analysis',
|
||||||
},
|
},
|
||||||
|
@ -34,6 +34,40 @@ export default [
|
||||||
component: './List/TableList',
|
component: './List/TableList',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//reportings
|
||||||
|
{
|
||||||
|
path: '/reports',
|
||||||
|
name: 'reports',
|
||||||
|
icon: 'fund',
|
||||||
|
component: './List/TableList',
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//logging
|
||||||
|
{
|
||||||
|
path: '/logs',
|
||||||
|
name: 'logs',
|
||||||
|
icon: 'search',
|
||||||
|
component: './List/TableList',
|
||||||
|
},
|
||||||
|
|
||||||
|
//alertings
|
||||||
|
{
|
||||||
|
path: '/alerts',
|
||||||
|
name: 'alerts',
|
||||||
|
icon: 'alert',
|
||||||
|
component: './List/TableList',
|
||||||
|
},
|
||||||
|
|
||||||
|
//settings
|
||||||
|
{
|
||||||
|
path: '/settings',
|
||||||
|
name: 'settings',
|
||||||
|
icon: 'setting',
|
||||||
|
component: './List/TableList',
|
||||||
|
},
|
||||||
|
|
||||||
// // forms
|
// // forms
|
||||||
// {
|
// {
|
||||||
// path: '/form',
|
// path: '/form',
|
||||||
|
|
|
@ -69,12 +69,13 @@ export default {
|
||||||
'component.noticeIcon.cleared': 'Cleared',
|
'component.noticeIcon.cleared': 'Cleared',
|
||||||
'component.noticeIcon.empty': 'No notifications',
|
'component.noticeIcon.empty': 'No notifications',
|
||||||
'menu.home': 'Home',
|
'menu.home': 'Home',
|
||||||
'menu.dashboard': 'Dashboard',
|
|
||||||
'menu.dashboard.analysis': 'Analysis',
|
|
||||||
'menu.dashboard.monitor': 'Monitor',
|
|
||||||
'menu.dashboard.workplace': 'Workplace',
|
|
||||||
|
|
||||||
'menu.endpoints': 'Endpoints',
|
'menu.platform': 'DASHBOARD',
|
||||||
|
'menu.endpoints': 'ENDPOINTS',
|
||||||
|
'menu.reports': 'REPORTS',
|
||||||
|
'menu.logs': 'LOGS',
|
||||||
|
'menu.alerts': 'ALERTS',
|
||||||
|
'menu.settings': 'SETTINGS',
|
||||||
|
|
||||||
|
|
||||||
'menu.form': 'Form',
|
'menu.form': 'Form',
|
||||||
|
|
|
@ -68,13 +68,13 @@ export default {
|
||||||
'component.noticeIcon.empty': '暂无数据',
|
'component.noticeIcon.empty': '暂无数据',
|
||||||
|
|
||||||
'menu.home': '首页',
|
'menu.home': '首页',
|
||||||
'menu.dashboard': 'Dashboard',
|
|
||||||
'menu.dashboard.analysis': '分析页',
|
|
||||||
'menu.dashboard.monitor': '监控页',
|
|
||||||
'menu.dashboard.workplace': '工作台',
|
|
||||||
|
|
||||||
|
'menu.platform': '平台概览',
|
||||||
'menu.endpoints': '终端管理',
|
'menu.endpoints': '终端管理',
|
||||||
'menu.endpoints.overview': '终端一览',
|
'menu.reports': '报表管理',
|
||||||
|
'menu.logs': '日志管理',
|
||||||
|
'menu.alerts': '告警管理',
|
||||||
|
'menu.settings': '系统设置',
|
||||||
|
|
||||||
|
|
||||||
'menu.form': '表单页',
|
'menu.form': '表单页',
|
||||||
|
|
Loading…
Reference in New Issue