Files
profitManage1.2/src/router/index.js
T
康冉冉 1dff3d2a9f 告警日志和消息推送开发并联调
1、优化列表操作列宽度
2、联调告警日志模块(100%)
3、前端开发并联调消息推送模块(100%)
4、服务器管理和交换机管理的图形监控下的数据进行默认展开排序
2025-11-12 18:39:01 +08:00

776 lines
22 KiB
JavaScript

import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
/* Layout */
import Layout from '@/layout'
import DialogView from '@/views/earnManage/server/dialogView.vue'
/**
* Note: 路由配置项
*
* hidden: true // 当设置 true 的时候该路由不会再侧边栏出现 如401,login等页面,或者如一些编辑页面/edit/1
* alwaysShow: true // 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式--如组件页面
* // 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面
* // 若你想不管路由下面的 children 声明的个数都显示你的根路由
* // 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,一直显示根路由
* redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
* name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
* query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数
* roles: ['admin', 'common'] // 访问路由的角色权限
* permissions: ['a:a:a', 'b:b:b'] // 访问路由的菜单权限
* meta : {
noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg
breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。
}
*/
// 公共路由
export const constantRoutes = [
{
path: '/redirect',
component: Layout,
hidden: true,
children: [
{
path: '/redirect/:path(.*)',
component: () => import('@/views/redirect')
}
]
},
{
path: '/login',
component: () => import('@/views/login'),
hidden: true
},
{
path: '/register',
component: () => import('@/views/register'),
hidden: true
},
{
path: '/404',
component: () => import('@/views/error/404'),
hidden: true
},
{
path: '/401',
component: () => import('@/views/error/401'),
hidden: true
},
// {
// path: '',
// component: Layout,
// redirect: 'index',
// children: [
// {
// path: 'index',
// component: () => import('@/views/index'),
// name: 'Index',
// meta: { title: '首页', icon: 'dashboard', affix: true }
// }
// ]
// },
{
path: '/user',
component: Layout,
hidden: true,
redirect: 'noredirect',
children: [
{
path: 'profile',
component: () => import('@/views/system/user/profile/index'),
name: 'Profile',
meta: { title: '个人中心', icon: 'user' }
}
]
},
{
path: '/dialog-view',
component: DialogView,
hidden: true,
name: 'DialogView'
}
]
// 动态路由,基于用户权限动态去加载
export const dynamicRoutes = [
{
path: '/index',
component: Layout,
redirect: 'index',
children: [
{
path: 'index',
component: () => import('@/views/index'),
name: 'Index',
meta: { title: '首页', icon: 'dashboard', affix: true }
}
]
},
{
path: '/system/user-auth',
component: Layout,
hidden: true,
permissions: ['system:user:edit'],
children: [
{
path: 'role/:userId(\\d+)',
component: () => import('@/views/system/user/authRole'),
name: 'AuthRole',
meta: { title: '分配角色', activeMenu: '/system/user' }
}
]
},
{
path: '/system/role-auth',
component: Layout,
hidden: true,
permissions: ['system:role:edit'],
children: [
{
path: 'user/:roleId(\\d+)',
component: () => import('@/views/system/role/authUser'),
name: 'AuthUser',
meta: { title: '分配用户', activeMenu: '/system/role' }
}
]
},
{
path: '/system/dict-data',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index/:dictId(\\d+)',
component: () => import('@/views/system/dict/data'),
name: 'Data',
meta: { title: '字典数据', activeMenu: '/system/dict' }
}
]
},
{
path: '/monitor/job-log',
component: Layout,
hidden: true,
permissions: ['monitor:job:list'],
children: [
{
path: 'index/:jobId(\\d+)',
component: () => import('@/views/monitor/job/log'),
name: 'JobLog',
meta: { title: '调度日志', activeMenu: '/monitor/job' }
}
]
},
{
path: '/tool/gen-edit',
component: Layout,
hidden: true,
permissions: ['tool:gen:edit'],
children: [
{
path: 'index/:tableId(\\d+)',
component: () => import('@/views/tool/gen/editTable'),
name: 'GenEdit',
meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
}
]
},
// 业务95值计算
{
path: '/earnManage/busValueCount/edit',
component: Layout,
hidden: true,
permissions: ['earnManage:busValueCount:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/earnManage/busValueCount/details'),
name: 'busValueCountEdit',
meta: { title: '新增任务', activeMenu: '/earnManage/busValueCount' }
}
]
},
{
path: '/earnManage/busValueCount/list',
component: Layout,
hidden: true,
permissions: ['earnManage:busValueCount:list'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/earnManage/busValueCount/relevantData'),
name: 'busValueCountRelevant',
meta: { title: '相关数据', activeMenu: '/earnManage/busValueCount' }
}
]
},
{
path: '/earnManage/busValueCount/chart',
component: Layout,
hidden: true,
permissions: ['earnManage:busValueCount:chart'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/earnManage/busValueCount/viewChart'),
name: 'busValueCountChart',
meta: { title: '查看图形', activeMenu: '/earnManage/busValueCount' }
}
]
},
// 服务器带宽收益管理
{
path: '/earnManage/server/list',
component: Layout,
hidden: true,
permissions: ['earnManage:server:list'],
children: [
{
path: 'index/:serverId?',
component: () => import('@/views/earnManage/server/relevantData'),
name: 'ServerList',
meta: { title: '相关数据', activeMenu: '/earnManage/server' }
}
]
},
{
path: '/earnManage/server/edit',
component: Layout,
hidden: true,
permissions: ['earnManage:server:edit'],
children: [
{
path: 'index/:serverId?',
component: () => import('@/views/earnManage/server/details'),
name: 'ServerEdit',
meta: { title: '生成月均日95值', activeMenu: '/earnManage/server' }
}
]
},
// 交换机带宽收益
{
path: '/earnManage/switch/list',
component: Layout,
hidden: true,
permissions: ['earnManage:switch:list'],
children: [
{
path: 'index/:switchId?',
component: () => import('@/views/earnManage/switch/switchRelevantData'),
name: 'SwitchList',
meta: { title: '相关数据', activeMenu: '/earnManage/switch' }
}
]
},
{
path: '/earnManage/switch/edit',
component: Layout,
hidden: true,
permissions: ['earnManage:switch:edit'],
children: [
{
path: 'index/:switchId?',
component: () => import('@/views/earnManage/switch/details'),
name: 'SwitchDetails',
meta: { title: '相关数据', activeMenu: '/earnManage/switch' }
}
]
},
// 业务标识管理
{
path: '/earnManage/businessIdent/details',
component: Layout,
hidden: true,
permissions: ['earnManage:businessIdent:details'],
children: [
{
path: 'index',
component: () => import('@/views/earnManage/businessIdent/details'),
name: 'BusinessIdentDetails',
meta: { title: '业务标识信息', noCache: true ,activeMenu: '/earnManage/businessIdent' }
}
]
},
// 脚本管理
{
path: '/earnManage/businessScript/details',
component: Layout,
hidden: true,
permissions: ['earnManage:businessScript:details'],
children: [
{
path: ':id?',
component: () => import('@/views/earnManage/businessScript/details'),
name: 'BusinessScriptDetails',
meta: { title: '脚本信息', noCache: true ,activeMenu: '/earnManage/businessScript' }
}
]
},
// 业务下发管理
{
path: '/earnManage/businessIssued/details',
component: Layout,
hidden: true,
permissions: ['earnManage:businessIssued:details'],
children: [
{
path: ':id?',
component: () => import('@/views/earnManage/businessIssued/details'),
name: 'BusinessIssuedDetails',
meta: { title: '业务下发信息', noCache: true ,activeMenu: '/earnManage/businessIssued' }
}
]
},
// 业务管理
{
path: '/earnManage/business/details',
component: Layout,
hidden: true,
permissions: ['earnManage:business:details'],
children: [
{
path: 'index',
component: () => import('@/views/earnManage/business/details'),
name: 'BusinessDetails',
meta: { title: '业务信息', noCache: true ,activeMenu: '/earnManage/business' }
}
]
},
// 资源注册
{
path: '/resource/register/edit',
component: Layout,
hidden: true,
permissions: ['resource:register:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/register/handle'),
name: 'RegisterEdit',
meta: { title: '资源注册信息', activeMenu: '/resource/register' }
}
]
},
// 服务器管理
{
path: '/resource/serverRegister/edit',
component: Layout,
hidden: true,
permissions: ['resource:register:edit'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/serverRegister/handle'),
name: 'serverRegisterEdit',
meta: { title: '服务器管理信息', activeMenu: '/resource/serverRegister' }
}
]
},
{
path: '/resource/serverRegister/monitorChart',
component: Layout,
hidden: true,
permissions: ['resource:serverRegister:echartView'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/serverRegister/monitorChart'),
name: 'ServerRegisterChart',
meta: { title: '图形监控', activeMenu: '/resource/serverRegister' }
}
]
},
// 交换机管理
{
path: '/resource/switchRegister/edit',
component: Layout,
hidden: true,
permissions: ['resource:switchRegister:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/switchRegister/handle'),
name: 'SwitchRegisterEdit',
meta: { title: '交换机管理信息', activeMenu: '/resource/switchRegister' }
}
]
},
{
path: '/resource/switchRegister/portRemarks',
component: Layout,
hidden: true,
permissions: ['resource:switchRegister:portRemarks'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/switchRegister/portRemarks'),
name: 'SwitchRegisterPortRemarks',
meta: { title: '接口备注', activeMenu: '/resource/switchRegister' }
}
]
},
{
path: '/resource/switchRegister/monitorChart',
component: Layout,
hidden: true,
permissions: ['resource:switchRegister:echartView'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/switchRegister/monitorChart'),
name: 'SwitchRegisterChart',
meta: { title: '图形监控', activeMenu: '/resource/switchRegister' }
}
]
},
// 资源拓扑
{
path: '/resource/topology/edit',
component: Layout,
hidden: true,
permissions: ['resource:topology:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/topology/details'),
name: 'TopologyEdit',
meta: { title: '拓扑信息', activeMenu: '/resource/topology' }
}
]
},
{
path: '/resource/topology/gplot',
component: Layout,
hidden: true,
permissions: ['resource:topology:gplot'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/topology/gplot'),
name: 'TopologyGplot',
meta: { title: '拓扑展示', activeMenu: '/resource/topology' }
}
]
},
{
path: '/resource/group/edit',
component: Layout,
hidden: true,
permissions: ['resource:group:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/group/details'),
name: 'GroupEdit',
meta: { title: '资源分组信息', activeMenu: '/resource/group' }
}
]
},
{
path: '/sync/problemRecord/details',
component: Layout,
hidden: true,
permissions: ['sync:problemRecord:details'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/sync/problemRecord/details'),
name: 'ProblemEdit',
meta: { title: '问题记录信息', activeMenu: '/sync/problemRecord' }
}
]
},
// 消息推送
{
path: '/resource/messagePush/details',
component: Layout,
hidden: true,
permissions: ['resource:messagePush:details'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/messagePush/details'),
name: 'MessagePushDetails',
meta: { title: '消息推送信息', activeMenu: '/resource/messagePush' }
}
]
},
// 服务器监控策略
{
path: '/resource/serverMonitorStrat/details',
component: Layout,
hidden: true,
permissions: ['resource:serverMonitorStrat:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/serverMonitorStrat/monitorStrategy'),
name: 'serverMonitorStratEdit',
meta: { title: '服务器监控策略信息', activeMenu: '/resource/serverMonitorStrat' }
}
]
},
// 交换机监控策略
{
path: '/resource/switchMonitorStrat/details',
component: Layout,
hidden: true,
permissions: ['resource:switchMonitorStrat:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/switchMonitorStrat/monitorStrategy'),
name: 'switchMonitorStatEdit',
meta: { title: '交换机监控策略信息', activeMenu: '/resource/switchMonitorStrat' }
}
]
},
// 服务器脚本策略
{
path: '/resource/serverScriptStrat/details',
component: Layout,
hidden: true,
permissions: ['resource:serverScriptStrat:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/serverScriptStrat/details'),
name: 'serverScriptStatEdit',
meta: { title: '服务器脚本策略信息', activeMenu: '/resource/serverScriptStrat' }
}
]
},
// 监控模版
{
path: '/resource/monitorTemp/details',
component: Layout,
hidden: true,
permissions: ['resource:monitorTemp:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/monitorTemp/details'),
name: 'monitorTempEdit',
meta: { title: '监控模版信息', activeMenu: '/resource/monitorTemp' }
}
]
},
{
path: '/resource/monitorTemp/view',
component: Layout,
hidden: true,
permissions: ['resource:monitorTemp:view'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/monitorTemp/view'),
name: 'monitorTempView',
meta: { title: '监控模版详情', activeMenu: '/resource/monitorTemp' }
}
]
},
// 资源监控策略
{
path: '/resource/monitorStategy/details',
component: Layout,
hidden: true,
permissions: ['resource:monitorStategy:edit'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/monitorStategy/details'),
name: 'monitorStategyEdit',
meta: { title: '资源监控策略信息', activeMenu: '/resource/monitorStategy' }
}
]
},
{
path: '/resource/monitorStategy/view',
component: Layout,
hidden: true,
permissions: ['resource:monitorStategy:view'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/monitorStategy/view'),
name: 'monitorStategyView',
meta: { title: '资源监控策略详情', activeMenu: '/resource/monitorStategy' }
}
]
},
// 资源监控
{
path: '/resource/resMonitor/details',
component: Layout,
hidden: true,
permissions: ['resource:resMonitor:details'],
children: [
{
path: 'index/:id?',
component: () => import('@/views/resource/resMonitor/details'),
name: 'resMonitorEdit',
meta: { title: '资源监控信息', activeMenu: '/resource/resMonitor' }
}
]
},
{
path: '/resource/resMonitor/digitalSuper',
component: Layout,
hidden: true,
permissions: ['resource:resMonitor:digitalSuper'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/resMonitor/digitalSuper'),
name: 'resMonitorDigitalSuper',
meta: { title: '数字监控项信息', activeMenu: '/resource/resMonitor' }
}
]
},
{
path: '/resource/resMonitor/digitalAutoFind',
component: Layout,
hidden: true,
permissions: ['resource:resMonitor:digitalAutoFind'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/resMonitor/digitalAutoFind'),
name: 'resMonitorDigitalAutoFind',
meta: { title: '数字监控项信息', activeMenu: '/resource/resMonitor' }
}
]
},
// 告警管理
{
path: '/resource/alarmManage/details',
component: Layout,
hidden: true,
permissions: ['resource:alarmManage:details'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/alarmManage/alarmManageDetails'),
name: 'alarmManageDetails',
meta: { title: '告警管理信息', activeMenu: '/resource/alarmManage' }
}
]
},
// 告警日志
{
path: '/resource/alarmLog/details',
component: Layout,
hidden: true,
permissions: ['resource:alarmLog:details'],
children: [
{
path: ':id?',
// component: () => import('@/views/resource/alarmLog/alarmLogDetails'),
component: () => import('@/views/resource/serverRegister/handle'),
name: 'alarmLogDetails',
meta: { title: '告警日志信息', activeMenu: '/resource/alarmLog' }
}
]
},
// 文件管理
{
path: '/resource/fileManage/view',
component: Layout,
hidden: true,
permissions: ['resource:fileManage:view'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/fileManage/fileManageView'),
name: 'fileManageView',
meta: { title: '文件管理信息', activeMenu: '/resource/fileManage' }
}
]
},
// 服务器脚本策略
{
path: '/resource/serverScript/details',
component: Layout,
hidden: true,
permissions: ['resource:serverScript:details'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/serverScript/serverScriptDetails'),
name: 'serverScriptDetails',
meta: { title: '服务器脚本策略信息', activeMenu: '/resource/serverScript' }
}
]
},
// 资源远程管理---脚本执行结果
{
path: '/resource/remoteManage/view',
component: Layout,
hidden: true,
permissions: ['resource:remoteManage:view'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/remoteManage/remoteManageView'),
name: 'remoteManageView',
meta: { title: '脚本执行结果信息', activeMenu: '/resource/remoteManage' }
}
]
},
// agent更新
{
path: '/resource/agentUpdate/view',
component: Layout,
hidden: true,
permissions: ['resource:agentUpdate:view'],
children: [
{
path: ':id?',
component: () => import('@/views/resource/agentUpdate/agentUpdateView'),
name: 'agentUpdateView',
meta: { title: 'AGENT更新信息', activeMenu: '/resource/agentUpdate' }
}
]
},
// agent采集数据
{
path: '/agentCollect/cpuData/view',
component: Layout,
hidden: true,
permissions: ['agentCollect:cpuData:view'],
children: [
{
path: ':id?',
component: () => import('@/views/agentCollect/cpuData/cpuDataView'),
name: 'cpuDataView',
meta: { title: 'cpu数据详情', activeMenu: '/agentCollect/cpuData' }
}
]
},
]
// 防止连续点击多次路由报错
let routerPush = Router.prototype.push
let routerReplace = Router.prototype.replace
// push
Router.prototype.push = function push(location) {
return routerPush.call(this, location).catch(err => err)
}
// replace
Router.prototype.replace = function push(location) {
return routerReplace.call(this, location).catch(err => err)
}
export default new Router({
mode: 'history', // 去掉url中的#
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes
})