...
|
...
|
@@ -91,6 +91,7 @@ import ElasticSearchInfo from "./views/bus/ElasticSearchInfo.vue" |
|
|
import RouterBatch from "./views/bus/RouterBatch.vue"
|
|
|
import MessageManagement from "./views/bus/MessageManagement.vue"
|
|
|
import RouterManage from "./views/bus/RouterManage"
|
|
|
|
|
|
//组件练习
|
|
|
//import Page7 from "./views/nav3/Page7.vue"
|
|
|
|
...
|
...
|
@@ -112,14 +113,13 @@ let routes = [ |
|
|
},
|
|
|
{
|
|
|
path: '/',
|
|
|
name: "主页",
|
|
|
redirect: '/main',
|
|
|
redirect: '/login',
|
|
|
hidden: true
|
|
|
},
|
|
|
{
|
|
|
path: '/',
|
|
|
component: Home,
|
|
|
name: 'INDEX',
|
|
|
name: '主页',
|
|
|
leaf: true,
|
|
|
iconCls: 'el-icon-menu',
|
|
|
children: [
|
...
|
...
|
@@ -137,21 +137,21 @@ let routes = [ |
|
|
// ]
|
|
|
// },
|
|
|
// { path: '/test', component: Main },
|
|
|
// {
|
|
|
// path: '/admin',
|
|
|
// component: Home,
|
|
|
// name: '系统设置',
|
|
|
// iconCls: 'el-icon-setting',//图标样式class
|
|
|
// children: [
|
|
|
// {path: '/user', component: User, name: '用户管理'},
|
|
|
// {path: '/role', component: Role, name: '组织机构'},
|
|
|
// {path: '/perm', component: Perm, name: '权限管理'},
|
|
|
// {path: '/log', component: LOG, name: '系统日志'},
|
|
|
// {path: '/department', component: Department, name: '部门管理'},
|
|
|
// {path: '/company', component: Company, name: '公司管理'},
|
|
|
// {path: '/group', component: Group, name: '集团管理'}
|
|
|
// ]
|
|
|
// },
|
|
|
{
|
|
|
path: '/admin',
|
|
|
component: Home,
|
|
|
name: '系统设置',
|
|
|
iconCls: 'el-icon-setting',//图标样式class
|
|
|
children: [
|
|
|
{path: '/user', component: User, name: '用户管理'},
|
|
|
{path: '/role', component: Role, name: '组织机构'},
|
|
|
{path: '/perm', component: Perm, name: '权限管理'},
|
|
|
{path: '/log', component: LOG, name: '系统日志'},
|
|
|
{path: '/department', component: Department, name: '部门管理'},
|
|
|
{path: '/company', component: Company, name: '公司管理'},
|
|
|
{path: '/group', component: Group, name: '集团管理'}
|
|
|
]
|
|
|
},
|
|
|
|
|
|
{
|
|
|
path: '/bus',
|
...
|
...
|
@@ -159,7 +159,7 @@ let routes = [ |
|
|
name: '消息控制中心',
|
|
|
iconCls: 'el-icon-message',
|
|
|
children: [
|
|
|
// {path: '/userInfo', component: UserInfo, name: '用户关系管理'},
|
|
|
{path: '/userInfo', component: UserInfo, name: '用户关系管理'},
|
|
|
{path: '/server', component: Server, name: '服务器管理'},
|
|
|
// {path: '/host', component: VirtualHost, name: '虚拟主机管理'},
|
|
|
{path: '/queue', component: Queue, name: '队列管理'},
|
...
|
...
|
@@ -185,6 +185,15 @@ let routes = [ |
|
|
// {path: '/exchangeView', component: ExchangeView, name: '交换机监控'},
|
|
|
]
|
|
|
},
|
|
|
// {
|
|
|
// path: '/nav3',
|
|
|
// component: Home,
|
|
|
// name: '组件练习',
|
|
|
// iconCls: 'el-icon-view',
|
|
|
// children: [
|
|
|
// {path: '/page7', component: Page7, name: '组件'},
|
|
|
// ]
|
|
|
// },
|
|
|
|
|
|
|
|
|
// {
|
...
|
...
|
|