From 5f3abebca281809ff48bc5fd09668f9df0be9dc0 Mon Sep 17 00:00:00 2001 From: xuyiming Date: Wed, 26 Aug 2020 14:42:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=90=E8=A1=8C=E7=AE=A1=E6=8E=A7=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/data-analysis/data-analysis.vue | 36 +- .../{service-control.vue => org-control.vue} | 0 ...peration-overview.vue => org-overview.vue} | 0 src/pages/data-analysis/super-control.vue | 618 ++++++++++++++++++ src/pages/data-analysis/super-overview.vue | 360 ++++++++++ src/router/index.js | 22 +- 6 files changed, 1022 insertions(+), 14 deletions(-) rename src/pages/data-analysis/{service-control.vue => org-control.vue} (100%) rename src/pages/data-analysis/{operation-overview.vue => org-overview.vue} (100%) create mode 100644 src/pages/data-analysis/super-control.vue create mode 100644 src/pages/data-analysis/super-overview.vue diff --git a/src/pages/data-analysis/data-analysis.vue b/src/pages/data-analysis/data-analysis.vue index 7fa182e..465adc0 100644 --- a/src/pages/data-analysis/data-analysis.vue +++ b/src/pages/data-analysis/data-analysis.vue @@ -1,14 +1,14 @@ + + + + diff --git a/src/pages/data-analysis/super-overview.vue b/src/pages/data-analysis/super-overview.vue new file mode 100644 index 0000000..b0c4953 --- /dev/null +++ b/src/pages/data-analysis/super-overview.vue @@ -0,0 +1,360 @@ + + + + diff --git a/src/router/index.js b/src/router/index.js index a5f1f71..7b82585 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -441,14 +441,14 @@ export default new Router({ component: () => import("@/pages/data-analysis/org-application"), }, { - path: "/data_analysis/operation_overview", // 运行概况-组织 - name: "operationOverview", - component: () => import("@/pages/data-analysis/operation-overview"), + path: "/data_analysis/org_overview", // 运行概况-组织 + name: "orgOverview", + component: () => import("@/pages/data-analysis/org-overview"), }, { - path: "/data_analysis/service_control", // 服务管控-组织 - name: "serviceControl", - component: () => import("@/pages/data-analysis/service-control"), + path: "/data_analysis/org_control", // 服务管控-组织 + name: "orgControl", + component: () => import("@/pages/data-analysis/org-control"), }, { path: "/data_analysis/super_service", // 数据分析中心服务-超管 @@ -460,6 +460,16 @@ export default new Router({ name: "superApplicationDataAnalysis", component: () => import("@/pages/data-analysis/super-application"), }, + { + path: "/data_analysis/super_overview", // 运行概况-超管 + name: "superOverview", + component: () => import("@/pages/data-analysis/super-overview"), + }, + { + path: "/data_analysis/super_control", // 服务管控-超管 + name: "superControl", + component: () => import("@/pages/data-analysis/super-control"), + }, ], }, { -- 2.26.0