mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-15 01:33:54 +00:00
added routes for fullview in the lane of dashboard
This commit is contained in:
parent
bdc13355df
commit
1e1a26b8be
@ -66,6 +66,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/fullview/:layerId/:entity/:name",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "dashboards" */ "@/views/dashboard/Edit.vue"
|
||||
),
|
||||
name: "FullViewCreate",
|
||||
meta: {
|
||||
title: "dashboardEdit",
|
||||
exact: false,
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/dashboard/:layerId/:entity/:serviceId/:name",
|
||||
component: () =>
|
||||
@ -79,6 +92,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/fullview/:layerId/:entity/:serviceId/:name",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "dashboards" */ "@/views/dashboard/Edit.vue"
|
||||
),
|
||||
name: "FullViewView",
|
||||
meta: {
|
||||
title: "dashboardEdit",
|
||||
exact: false,
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/dashboard/related/:layerId/:entity/:serviceId/:destServiceId/:name",
|
||||
component: () =>
|
||||
@ -92,6 +118,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/fullview/related/:layerId/:entity/:serviceId/:destServiceId/:name",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "FullViewdashboards" */ "@/views/dashboard/Edit.vue"
|
||||
),
|
||||
name: "FullViewViewServiceRelation",
|
||||
meta: {
|
||||
title: "dashboardEdit",
|
||||
exact: false,
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/dashboard/:layerId/:entity/:serviceId/:podId/:name",
|
||||
component: () =>
|
||||
@ -105,6 +144,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/fullview/:layerId/:entity/:serviceId/:podId/:name",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "FullViewdashboards" */ "@/views/dashboard/Edit.vue"
|
||||
),
|
||||
name: "FullViewViewPod",
|
||||
meta: {
|
||||
title: "dashboardEdit",
|
||||
exact: false,
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/dashboard/:layerId/:entity/:serviceId/:podId/:destServiceId/:destPodId/:name",
|
||||
component: () =>
|
||||
@ -118,6 +170,19 @@ export const routesDashboard: Array<RouteRecordRaw> = [
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/fullview/:layerId/:entity/:serviceId/:podId/:destServiceId/:destPodId/:name",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "FullViewdashboards" */ "@/views/dashboard/Edit.vue"
|
||||
),
|
||||
name: "FullViewViewPodRelation",
|
||||
meta: {
|
||||
title: "dashboardEdit",
|
||||
exact: true,
|
||||
notShow: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user