服务器管理添加流量图形展示功能、权限控制试调测
1、服务器管理添加流量图形展示功能 2、agent更新模块表单修改更新方式为可编辑 3、权限控制试调测 4、优化并修改bug
This commit is contained in:
+14
-7
@@ -6,6 +6,7 @@ Vue.use(Router)
|
||||
/* Layout */
|
||||
import Layout from '@/layout'
|
||||
import DialogView from '@/views/earnManage/server/dialogView.vue'
|
||||
import TrafficChart from '@/views/resource/serverRegister/trafficChart.vue'
|
||||
import Welcome from '@/views/welcome.vue'
|
||||
|
||||
/**
|
||||
@@ -88,6 +89,12 @@ export const constantRoutes = [
|
||||
component: DialogView,
|
||||
hidden: true,
|
||||
name: 'DialogView'
|
||||
},
|
||||
{
|
||||
path: '/traffic-chart',
|
||||
component: TrafficChart,
|
||||
hidden: true,
|
||||
name: 'TrafficChart'
|
||||
}
|
||||
]
|
||||
|
||||
@@ -181,7 +188,7 @@ export const dynamicRoutes = [
|
||||
path: '/earnManage/busValueCount/edit',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['earnManage:busValueCount:edit'],
|
||||
permissions: ['earnManage:busValueCount:add'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:id?',
|
||||
@@ -195,7 +202,7 @@ export const dynamicRoutes = [
|
||||
path: '/earnManage/busValueCount/list',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['earnManage:busValueCount:list'],
|
||||
permissions: ['earnManage:busValueCount:relevantData'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:id?',
|
||||
@@ -209,7 +216,7 @@ export const dynamicRoutes = [
|
||||
path: '/earnManage/busValueCount/chart',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['earnManage:busValueCount:chart'],
|
||||
permissions: ['earnManage:busValueCount:graphicAnalysis'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:id?',
|
||||
@@ -224,7 +231,7 @@ export const dynamicRoutes = [
|
||||
path: '/earnManage/server/list',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['earnManage:server:list'],
|
||||
permissions: ['earnManage:server:relevantData'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:serverId?',
|
||||
@@ -238,7 +245,7 @@ export const dynamicRoutes = [
|
||||
path: '/earnManage/server/edit',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['earnManage:server:edit'],
|
||||
permissions: ['rocketmq:traffic'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:serverId?',
|
||||
@@ -371,7 +378,7 @@ export const dynamicRoutes = [
|
||||
path: '/resource/serverRegister/monitorChart',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['resource:serverRegister:echartView'],
|
||||
permissions: ['rocketmq:traffic'],
|
||||
children: [
|
||||
{
|
||||
path: ':id?',
|
||||
@@ -414,7 +421,7 @@ export const dynamicRoutes = [
|
||||
path: '/resource/switchRegister/monitorChart',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['resource:switchRegister:echartView'],
|
||||
permissions: ['resource:switchRegister:graphicAnalysis'],
|
||||
children: [
|
||||
{
|
||||
path: ':id?',
|
||||
|
||||
Reference in New Issue
Block a user