update menu
This commit is contained in:
parent
895072732c
commit
0722b05c06
|
@ -18,10 +18,10 @@ export default [
|
|||
authority: ['admin', 'user'],
|
||||
routes: [
|
||||
// dashboard
|
||||
{ path: '/', redirect: '/dashboard/analysis' },
|
||||
{ path: '/', redirect: '/platform' },
|
||||
{
|
||||
path: '/dashboard',
|
||||
name: 'dashboard',
|
||||
path: '/platform',
|
||||
name: 'platform',
|
||||
icon: 'dashboard',
|
||||
component: './Dashboard/Analysis',
|
||||
},
|
||||
|
@ -34,6 +34,40 @@ export default [
|
|||
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
|
||||
// {
|
||||
// path: '/form',
|
||||
|
|
|
@ -69,12 +69,13 @@ export default {
|
|||
'component.noticeIcon.cleared': 'Cleared',
|
||||
'component.noticeIcon.empty': 'No notifications',
|
||||
'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',
|
||||
|
|
|
@ -68,14 +68,14 @@ export default {
|
|||
'component.noticeIcon.empty': '暂无数据',
|
||||
|
||||
'menu.home': '首页',
|
||||
'menu.dashboard': 'Dashboard',
|
||||
'menu.dashboard.analysis': '分析页',
|
||||
'menu.dashboard.monitor': '监控页',
|
||||
'menu.dashboard.workplace': '工作台',
|
||||
|
||||
'menu.endpoints': '终端管理',
|
||||
'menu.endpoints.overview': '终端一览',
|
||||
|
||||
'menu.platform': '平台概览',
|
||||
'menu.endpoints': '终端管理',
|
||||
'menu.reports': '报表管理',
|
||||
'menu.logs': '日志管理',
|
||||
'menu.alerts': '告警管理',
|
||||
'menu.settings': '系统设置',
|
||||
|
||||
|
||||
'menu.form': '表单页',
|
||||
'menu.form.basicform': '基础表单',
|
||||
|
|
Loading…
Reference in New Issue