From 9577bd9de7f2e32bd02bf3a7adc972f3a722b592 Mon Sep 17 00:00:00 2001 From: MTrun <1262327911@qq.com> Date: Tue, 11 Jan 2022 14:15:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=8B=96=E6=8B=BD?= =?UTF-8?q?=E5=8C=BA=E5=9F=9F=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/chart.route.ts | 2 +- src/views/chart/components/ContentDrag/index.ts | 3 +++ .../chart/components/{ContentDraw => ContentDrag}/index.vue | 0 src/views/chart/components/ContentDraw/index.ts | 3 --- src/views/chart/index.vue | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 src/views/chart/components/ContentDrag/index.ts rename src/views/chart/components/{ContentDraw => ContentDrag}/index.vue (100%) delete mode 100644 src/views/chart/components/ContentDraw/index.ts diff --git a/src/router/modules/chart.route.ts b/src/router/modules/chart.route.ts index 345afff5..7c173b8e 100644 --- a/src/router/modules/chart.route.ts +++ b/src/router/modules/chart.route.ts @@ -11,7 +11,7 @@ const chartRoutes: RouteRecordRaw = { name: ChartEnum.CHART_HOME_NAME, component: importPath['ChartEnum.CHART_HOME_NAME'], meta: { - title: '图表', + title: '工作空间', isRoot: true } } diff --git a/src/views/chart/components/ContentDrag/index.ts b/src/views/chart/components/ContentDrag/index.ts new file mode 100644 index 00000000..08a77860 --- /dev/null +++ b/src/views/chart/components/ContentDrag/index.ts @@ -0,0 +1,3 @@ +import ContentDrag from './index.vue' + +export { ContentDrag } diff --git a/src/views/chart/components/ContentDraw/index.vue b/src/views/chart/components/ContentDrag/index.vue similarity index 100% rename from src/views/chart/components/ContentDraw/index.vue rename to src/views/chart/components/ContentDrag/index.vue diff --git a/src/views/chart/components/ContentDraw/index.ts b/src/views/chart/components/ContentDraw/index.ts deleted file mode 100644 index af0391af..00000000 --- a/src/views/chart/components/ContentDraw/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import ContentDraw from './index.vue' - -export { ContentDraw } diff --git a/src/views/chart/index.vue b/src/views/chart/index.vue index 70404fdd..9d3a2808 100644 --- a/src/views/chart/index.vue +++ b/src/views/chart/index.vue @@ -15,7 +15,7 @@ - + @@ -29,7 +29,7 @@ import { HeaderRightBtn } from './components/HeaderRightBtn/index' import { HeaderTitle } from './components/HeaderTitle/index' import { ContentLayers } from './components/ContentLayers/index' import { ContentCharts } from './components/ContentCharts/index' -import { ContentDraw } from './components/ContentDraw/index' +import { ContentDrag } from './components/ContentDrag/index' import { ContentDetails } from './components/ContentDetails/index'