|
|
@@ -11,7 +11,7 @@
|
|
|
:collapse-transition="collapseTransition"
|
|
|
>
|
|
|
<div class="logobox">
|
|
|
- <a href="/background" style="text-decoration-line: none">
|
|
|
+ <a href="/bg" style="text-decoration-line: none">
|
|
|
<img class="logoimg" src="@/assets/img/logo.png" alt="">
|
|
|
</a>
|
|
|
</div>
|
|
|
@@ -27,27 +27,6 @@
|
|
|
</el-menu-item>
|
|
|
</el-menu-item-group>
|
|
|
</el-submenu>
|
|
|
- <!-- <el-submenu index="/background/account">
|
|
|
- <template slot="title">
|
|
|
- <i class="el-icon-user" />
|
|
|
- <span>我的帐号</span>
|
|
|
- </template>
|
|
|
- <el-menu-item-group>
|
|
|
- <el-menu-item index="/background/account/profile">
|
|
|
- <i class="el-icon-user" />
|
|
|
- <span slot="title">个人资料</span>
|
|
|
- </el-menu-item>
|
|
|
- <el-menu-item index="/background/account/record">
|
|
|
- <i class="el-icon-message" />
|
|
|
- <span slot="title">登入历史</span>
|
|
|
- </el-menu-item>
|
|
|
- <el-menu-item index="/background/account/oauth">
|
|
|
- <i class="el-icon-film" />
|
|
|
- <span slot="title">OAuth</span>
|
|
|
- </el-menu-item>
|
|
|
- </el-menu-item-group>
|
|
|
- </el-submenu>
|
|
|
- -->
|
|
|
</el-menu>
|
|
|
</template>
|
|
|
|
|
|
@@ -58,7 +37,8 @@ export default {
|
|
|
return {
|
|
|
collapsed: false,
|
|
|
collapseTransition: false,
|
|
|
- menuList: []
|
|
|
+ menuList: [],
|
|
|
+ devops: true
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
@@ -72,256 +52,408 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
initSideMenu() {
|
|
|
- this.menuList = [
|
|
|
- {
|
|
|
- url: '/background/account',
|
|
|
- title: '我的帐号',
|
|
|
- icon: 'el-icon-user',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/account/profile',
|
|
|
- title: '个人资料',
|
|
|
- icon: 'el-icon-user'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/account/record',
|
|
|
- title: '登入记录',
|
|
|
- icon: 'el-icon-user'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/account/oauth',
|
|
|
- title: 'OAuth应用',
|
|
|
- icon: 'el-icon-user'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my',
|
|
|
- title: '我的',
|
|
|
- icon: 'el-icon-s-data',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/my/message',
|
|
|
- title: '我的消息',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/wallet',
|
|
|
- title: '我的钱包',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/vip',
|
|
|
- title: '我的会员',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/contact',
|
|
|
- title: '联系人',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/album',
|
|
|
- title: '收藏夹',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/history',
|
|
|
- title: '历史记录',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/rcmd',
|
|
|
- title: '推荐设置',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/my/device',
|
|
|
- title: '我的设备',
|
|
|
- icon: 'el-icon-s-data'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/post',
|
|
|
- title: '我的稿件',
|
|
|
- icon: 'el-icon-film',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/post/video',
|
|
|
- title: '视频稿件',
|
|
|
- icon: 'el-icon-film'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/post/image',
|
|
|
- title: '相册稿件',
|
|
|
- icon: 'el-icon-film'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/post/article',
|
|
|
- title: '文章稿件',
|
|
|
- icon: 'el-icon-film'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/oss',
|
|
|
- title: '存储系统',
|
|
|
- icon: 'el-icon-files',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/oss/store_node',
|
|
|
- title: '存储节点',
|
|
|
- icon: 'el-icon-files'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/oss/user_node',
|
|
|
- title: '我的节点',
|
|
|
- icon: 'el-icon-files'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/oss/upload_channel',
|
|
|
- title: '上传通道',
|
|
|
- icon: 'el-icon-files'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/oss/object',
|
|
|
- title: '对象列表',
|
|
|
- icon: 'el-icon-files'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/blog',
|
|
|
- title: '我的博客',
|
|
|
- icon: 'el-icon-files',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/blog/category',
|
|
|
- title: '分类管理',
|
|
|
- icon: 'el-icon-files'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/blog/post',
|
|
|
- title: '文章管理',
|
|
|
- icon: 'el-icon-files'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/blog/question',
|
|
|
- title: '面试题',
|
|
|
- icon: 'el-icon-files'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/file',
|
|
|
- title: '我的文件',
|
|
|
- icon: 'el-icon-setting',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/file/list',
|
|
|
- title: '文件列表',
|
|
|
- icon: 'el-icon-setting'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/file/image',
|
|
|
- title: '图片列表',
|
|
|
- icon: 'el-icon-setting'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/site',
|
|
|
- title: '站点配置',
|
|
|
- icon: 'el-icon-setting',
|
|
|
- children: [
|
|
|
- /* {
|
|
|
- url: '/background/site/store',
|
|
|
- title: '存储配置',
|
|
|
- icon: 'el-icon-setting'
|
|
|
- },*/
|
|
|
- {
|
|
|
- url: '/background/site/notify',
|
|
|
- title: '通知配置',
|
|
|
- icon: 'el-icon-setting'
|
|
|
- },
|
|
|
- /* {
|
|
|
- url: '/background/site/registry',
|
|
|
- title: '注册配置',
|
|
|
- icon: 'el-icon-setting'
|
|
|
- },*/
|
|
|
- {
|
|
|
- url: '/background/site/category',
|
|
|
- title: '站点分区',
|
|
|
- icon: 'el-icon-setting'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/admin',
|
|
|
- title: '后台管理',
|
|
|
- icon: 'el-icon-user-solid',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/admin/charge',
|
|
|
- title: '充值请求',
|
|
|
- icon: 'el-icon-user-solid'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/admin/user',
|
|
|
- title: '用户管理',
|
|
|
- icon: 'el-icon-user-solid'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/admin/video',
|
|
|
- title: '视频管理',
|
|
|
- icon: 'el-icon-user-solid'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/admin/avatar',
|
|
|
- title: '用户头像',
|
|
|
- icon: 'el-icon-user-solid'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/backend',
|
|
|
- title: '后端系统',
|
|
|
- icon: 'el-icon-loading',
|
|
|
- children: [
|
|
|
- {
|
|
|
- url: '/background/backend/gateway',
|
|
|
- title: '网关',
|
|
|
- icon: 'el-icon-loading'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/backend/dubbo_service',
|
|
|
- title: 'Dubbo服务',
|
|
|
- icon: 'el-icon-loading'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/backend/springcloud_service',
|
|
|
- title: 'SpringCloud服务',
|
|
|
- icon: 'el-icon-loading'
|
|
|
- },
|
|
|
- {
|
|
|
- url: '/background/backend/access_log',
|
|
|
+ if (this.devops) {
|
|
|
+ this.menuList = [
|
|
|
+ {
|
|
|
+ url: '/bg/user',
|
|
|
+ title: '我的',
|
|
|
+ icon: 'el-icon-user',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/user/profile',
|
|
|
+ title: '我的资料',
|
|
|
+ icon: 'el-icon-user'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/user/record',
|
|
|
+ title: '登入记录',
|
|
|
+ icon: 'el-icon-user'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/user/message',
|
|
|
+ title: '我的消息',
|
|
|
+ icon: 'el-icon-user'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/machine',
|
|
|
+ title: '机器',
|
|
|
+ icon: 'el-icon-s-data',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/machine/host',
|
|
|
+ title: '机器节点',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/machine/aliyun_key',
|
|
|
+ title: '阿里云帐号',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/build',
|
|
|
+ title: '构建配置',
|
|
|
+ icon: 'el-icon-film',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/build/dir',
|
|
|
+ title: '构建目录',
|
|
|
+ icon: 'el-icon-film'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/build/repo_auth',
|
|
|
+ title: '仓库认证',
|
|
|
+ icon: 'el-icon-film'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/build/compiler',
|
|
|
+ title: '编译器',
|
|
|
+ icon: 'el-icon-film'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/build/docker_registry',
|
|
|
+ title: 'docker 仓库',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/build/packer',
|
|
|
+ title: '应用打包',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/app',
|
|
|
+ title: '应用',
|
|
|
+ icon: 'el-icon-files',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/app/config',
|
|
|
+ title: '应用配置',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/app/bd',
|
|
|
+ title: '构建部署',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/app/stat',
|
|
|
+ title: '运行状态',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/sys',
|
|
|
+ title: '系统',
|
|
|
+ icon: 'el-icon-user-solid',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/sys/site',
|
|
|
+ title: '站点配置',
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/sys/webhook',
|
|
|
+ title: 'webhook通知',
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ }/*,
|
|
|
+ {
|
|
|
+ url: '/bg/sys/access_log',
|
|
|
title: '访问日志',
|
|
|
- icon: 'el-icon-loading'
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
},
|
|
|
{
|
|
|
- url: '/background/backend/runtime_log',
|
|
|
+ url: '/bg/sys/runtime_log',
|
|
|
title: '运行日志',
|
|
|
- icon: 'el-icon-loading'
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
},
|
|
|
{
|
|
|
- url: '/background/backend/realtime_log',
|
|
|
+ url: '/bg/sys/realtime_log',
|
|
|
title: '实时日志',
|
|
|
- icon: 'el-icon-loading'
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ }*/
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/rbac',
|
|
|
+ title: 'RBAC',
|
|
|
+ icon: 'el-icon-loading',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/rbac/menu',
|
|
|
+ title: '资源管理',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/rbac/role',
|
|
|
+ title: '角色管理',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/rbac/user',
|
|
|
+ title: '用户管理',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ } else {
|
|
|
+ this.menuList = [
|
|
|
+ {
|
|
|
+ url: '/bg/account',
|
|
|
+ title: '我的帐号',
|
|
|
+ icon: 'el-icon-user',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/account/profile',
|
|
|
+ title: '个人资料',
|
|
|
+ icon: 'el-icon-user'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/account/record',
|
|
|
+ title: '登入记录',
|
|
|
+ icon: 'el-icon-user'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/account/oauth',
|
|
|
+ title: 'OAuth应用',
|
|
|
+ icon: 'el-icon-user'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my',
|
|
|
+ title: '我的',
|
|
|
+ icon: 'el-icon-s-data',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/my/message',
|
|
|
+ title: '我的消息',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/wallet',
|
|
|
+ title: '我的钱包',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/vip',
|
|
|
+ title: '我的会员',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/contact',
|
|
|
+ title: '联系人',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/album',
|
|
|
+ title: '收藏夹',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/history',
|
|
|
+ title: '历史记录',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/rcmd',
|
|
|
+ title: '推荐设置',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/my/device',
|
|
|
+ title: '我的设备',
|
|
|
+ icon: 'el-icon-s-data'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/post',
|
|
|
+ title: '我的稿件',
|
|
|
+ icon: 'el-icon-film',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/post/video',
|
|
|
+ title: '视频稿件',
|
|
|
+ icon: 'el-icon-film'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/post/image',
|
|
|
+ title: '相册稿件',
|
|
|
+ icon: 'el-icon-film'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/post/article',
|
|
|
+ title: '文章稿件',
|
|
|
+ icon: 'el-icon-film'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/oss',
|
|
|
+ title: '存储系统',
|
|
|
+ icon: 'el-icon-files',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/oss/store_node',
|
|
|
+ title: '存储节点',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/oss/user_node',
|
|
|
+ title: '我的节点',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/oss/upload_channel',
|
|
|
+ title: '上传通道',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/oss/object',
|
|
|
+ title: '对象列表',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/blog',
|
|
|
+ title: '我的博客',
|
|
|
+ icon: 'el-icon-files',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/blog/category',
|
|
|
+ title: '分类管理',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/blog/post',
|
|
|
+ title: '文章管理',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/blog/question',
|
|
|
+ title: '面试题',
|
|
|
+ icon: 'el-icon-files'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/file',
|
|
|
+ title: '我的文件',
|
|
|
+ icon: 'el-icon-setting',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/file/list',
|
|
|
+ title: '文件列表',
|
|
|
+ icon: 'el-icon-setting'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/file/image',
|
|
|
+ title: '图片列表',
|
|
|
+ icon: 'el-icon-setting'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/site',
|
|
|
+ title: '站点配置',
|
|
|
+ icon: 'el-icon-setting',
|
|
|
+ children: [
|
|
|
+ /* {
|
|
|
+ url: '/bg/site/store',
|
|
|
+ title: '存储配置',
|
|
|
+ icon: 'el-icon-setting'
|
|
|
+ },*/
|
|
|
+ {
|
|
|
+ url: '/bg/site/notify',
|
|
|
+ title: '通知配置',
|
|
|
+ icon: 'el-icon-setting'
|
|
|
+ },
|
|
|
+ /* {
|
|
|
+ url: '/bg/site/registry',
|
|
|
+ title: '注册配置',
|
|
|
+ icon: 'el-icon-setting'
|
|
|
+ },*/
|
|
|
+ {
|
|
|
+ url: '/bg/site/category',
|
|
|
+ title: '站点分区',
|
|
|
+ icon: 'el-icon-setting'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/admin',
|
|
|
+ title: '后台管理',
|
|
|
+ icon: 'el-icon-user-solid',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/admin/charge',
|
|
|
+ title: '充值请求',
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/admin/user',
|
|
|
+ title: '用户管理',
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/admin/video',
|
|
|
+ title: '视频管理',
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/admin/avatar',
|
|
|
+ title: '用户头像',
|
|
|
+ icon: 'el-icon-user-solid'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/backend',
|
|
|
+ title: '后端系统',
|
|
|
+ icon: 'el-icon-loading',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ url: '/bg/backend/gateway',
|
|
|
+ title: '网关',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/backend/dubbo_service',
|
|
|
+ title: 'Dubbo服务',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/backend/springcloud_service',
|
|
|
+ title: 'SpringCloud服务',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/backend/access_log',
|
|
|
+ title: '访问日志',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/backend/runtime_log',
|
|
|
+ title: '运行日志',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: '/bg/backend/realtime_log',
|
|
|
+ title: '实时日志',
|
|
|
+ icon: 'el-icon-loading'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|