From f4df648e5af245b25ff82d3762967c8183a1b1ca Mon Sep 17 00:00:00 2001 From: MTrun <1262327911@qq.com> Date: Mon, 14 Mar 2022 19:52:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E8=A7=84=E8=8C=83=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- .../{Skeleton => GoSkeleton}/index.ts | 0 .../{Skeleton => GoSkeleton}/index.vue | 0 .../{Skeleton.vue => LoadingSkeleton.vue} | 0 src/components/LoadingComponent/index.ts | 2 +- src/components/LoadingComponent/index.vue | 2 +- src/components/ThemeColorSelect/index.vue | 6 +++--- src/layout/components/GoFooter/index.ts | 3 --- src/layout/components/GoHeader/index.ts | 3 --- src/layout/components/HeaderPro/index.ts | 3 --- src/layout/components/LayoutFooter/index.ts | 3 +++ .../{GoFooter => LayoutFooter}/index.vue | 0 src/layout/components/LayoutHeader/index.ts | 3 +++ .../{GoHeader => LayoutHeader}/index.vue | 0 src/layout/components/LayoutHeaderPro/index.ts | 3 +++ .../{HeaderPro => LayoutHeaderPro}/index.vue | 8 ++++---- src/layout/components/LayoutMain/index.ts | 3 +++ .../components/{Main => LayoutMain}/index.vue | 0 .../components/LayoutTransitionMain/index.ts | 3 +++ .../index.vue | 0 src/layout/components/Main/index.ts | 3 --- src/layout/components/TransitionMain/index.ts | 3 --- src/layout/index.vue | 4 ++-- src/views/chart/ContentBox/index.vue | 5 +---- .../ContentCharts/components/ItemBox/index.vue | 2 +- .../components/OptionContent/index.vue | 2 +- src/views/chart/ContentCharts/index.vue | 14 +++++++------- .../components/ChartAnimation/index.vue | 4 ++-- .../components/ChartSetting/index.vue | 12 ++++++------ .../chart/ContentConfigurations/index.vue | 6 +++--- .../components/EditBottom/index.vue | 6 +++--- .../components/EditHistory/index.vue | 2 +- .../ContentEdit/components/EditRange/index.vue | 2 +- src/views/chart/ContentEdit/index.vue | 12 ++++++------ src/views/chart/ContentLayers/index.vue | 8 ++++---- src/views/chart/HeaderLeftBtn/index.vue | 2 +- src/views/chart/HeaderTitle/index.vue | 2 +- src/views/chart/index.vue | 18 +++++++++--------- src/views/login/index.vue | 14 +++++++------- .../components/PreviewRenderList/index.ts | 3 +++ .../index.vue | 0 .../preview/components/RenderList/index.ts | 3 --- src/views/preview/index.vue | 4 ++-- src/views/project/index.vue | 14 +++++++------- .../project/items/components/Card/index.ts | 3 --- .../project/items/components/List/index.ts | 3 --- .../items/components/ModalCard/index.ts | 3 --- .../items/components/ProjectItemsCard/index.ts | 3 +++ .../{Card => ProjectItemsCard}/index.vue | 4 ++-- .../hooks/useData.hook.ts | 2 +- .../hooks/useModal.hook.ts | 2 +- .../items/components/ProjectItemsList/index.ts | 3 +++ .../{List => ProjectItemsList}/index.vue | 12 ++++++------ .../components/ProjectItemsModalCard/index.ts | 3 +++ .../index.vue | 4 ++-- src/views/project/items/index.vue | 4 ++-- .../layout/components/AsideFooter/index.ts | 3 --- .../project/layout/components/Create/index.ts | 3 --- .../project/layout/components/Header/index.ts | 3 --- .../project/layout/components/Header/index.vue | 13 ------------- .../ProjectLayoutAsideFooter/index.ts | 3 +++ .../index.vue | 8 ++++---- .../components/CreateModal/index.ts | 0 .../components/CreateModal/index.vue | 0 .../components/ProjectLayoutCreate/index.ts | 3 +++ .../{Create => ProjectLayoutCreate}/index.vue | 4 ++-- .../components/ProjectLayoutSider/index.ts | 3 +++ .../{Sider => ProjectLayoutSider}/index.vue | 10 +++++----- .../{Sider => ProjectLayoutSider}/menu.ts | 0 .../project/layout/components/Sider/index.ts | 3 --- 70 files changed, 136 insertions(+), 155 deletions(-) rename src/components/{Skeleton => GoSkeleton}/index.ts (100%) rename src/components/{Skeleton => GoSkeleton}/index.vue (100%) rename src/components/LoadingComponent/{Skeleton.vue => LoadingSkeleton.vue} (100%) delete mode 100644 src/layout/components/GoFooter/index.ts delete mode 100644 src/layout/components/GoHeader/index.ts delete mode 100644 src/layout/components/HeaderPro/index.ts create mode 100644 src/layout/components/LayoutFooter/index.ts rename src/layout/components/{GoFooter => LayoutFooter}/index.vue (100%) create mode 100644 src/layout/components/LayoutHeader/index.ts rename src/layout/components/{GoHeader => LayoutHeader}/index.vue (100%) create mode 100644 src/layout/components/LayoutHeaderPro/index.ts rename src/layout/components/{HeaderPro => LayoutHeaderPro}/index.vue (75%) create mode 100644 src/layout/components/LayoutMain/index.ts rename src/layout/components/{Main => LayoutMain}/index.vue (100%) create mode 100644 src/layout/components/LayoutTransitionMain/index.ts rename src/layout/components/{TransitionMain => LayoutTransitionMain}/index.vue (100%) delete mode 100644 src/layout/components/Main/index.ts delete mode 100644 src/layout/components/TransitionMain/index.ts create mode 100644 src/views/preview/components/PreviewRenderList/index.ts rename src/views/preview/components/{RenderList => PreviewRenderList}/index.vue (100%) delete mode 100644 src/views/preview/components/RenderList/index.ts delete mode 100644 src/views/project/items/components/Card/index.ts delete mode 100644 src/views/project/items/components/List/index.ts delete mode 100644 src/views/project/items/components/ModalCard/index.ts create mode 100644 src/views/project/items/components/ProjectItemsCard/index.ts rename src/views/project/items/components/{Card => ProjectItemsCard}/index.vue (98%) rename src/views/project/items/components/{List => ProjectItemsList}/hooks/useData.hook.ts (96%) rename src/views/project/items/components/{List => ProjectItemsList}/hooks/useModal.hook.ts (95%) create mode 100644 src/views/project/items/components/ProjectItemsList/index.ts rename src/views/project/items/components/{List => ProjectItemsList}/index.vue (81%) create mode 100644 src/views/project/items/components/ProjectItemsModalCard/index.ts rename src/views/project/items/components/{ModalCard => ProjectItemsModalCard}/index.vue (98%) delete mode 100644 src/views/project/layout/components/AsideFooter/index.ts delete mode 100644 src/views/project/layout/components/Create/index.ts delete mode 100644 src/views/project/layout/components/Header/index.ts delete mode 100644 src/views/project/layout/components/Header/index.vue create mode 100644 src/views/project/layout/components/ProjectLayoutAsideFooter/index.ts rename src/views/project/layout/components/{AsideFooter => ProjectLayoutAsideFooter}/index.vue (89%) rename src/views/project/layout/components/{Create => ProjectLayoutCreate}/components/CreateModal/index.ts (100%) rename src/views/project/layout/components/{Create => ProjectLayoutCreate}/components/CreateModal/index.vue (100%) create mode 100644 src/views/project/layout/components/ProjectLayoutCreate/index.ts rename src/views/project/layout/components/{Create => ProjectLayoutCreate}/index.vue (97%) create mode 100644 src/views/project/layout/components/ProjectLayoutSider/index.ts rename src/views/project/layout/components/{Sider => ProjectLayoutSider}/index.vue (85%) rename src/views/project/layout/components/{Sider => ProjectLayoutSider}/menu.ts (100%) delete mode 100644 src/views/project/layout/components/Sider/index.ts diff --git a/src/App.vue b/src/App.vue index ca86ca91..7f644b1b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,7 +6,7 @@ :theme-overrides="getThemeOverrides" > - + diff --git a/src/components/Skeleton/index.ts b/src/components/GoSkeleton/index.ts similarity index 100% rename from src/components/Skeleton/index.ts rename to src/components/GoSkeleton/index.ts diff --git a/src/components/Skeleton/index.vue b/src/components/GoSkeleton/index.vue similarity index 100% rename from src/components/Skeleton/index.vue rename to src/components/GoSkeleton/index.vue diff --git a/src/components/LoadingComponent/Skeleton.vue b/src/components/LoadingComponent/LoadingSkeleton.vue similarity index 100% rename from src/components/LoadingComponent/Skeleton.vue rename to src/components/LoadingComponent/LoadingSkeleton.vue diff --git a/src/components/LoadingComponent/index.ts b/src/components/LoadingComponent/index.ts index 35d4f341..fbda4abe 100644 --- a/src/components/LoadingComponent/index.ts +++ b/src/components/LoadingComponent/index.ts @@ -1,7 +1,7 @@ import type { App } from 'vue' import LoadingComponent from './index.vue' import AsyncLoading from './index.vue' -import AsyncSkeletonLoading from './GoSkeleton.vue' +import AsyncSkeletonLoading from './LoadingSkeleton.vue' // 正常组件 export { LoadingComponent } diff --git a/src/components/LoadingComponent/index.vue b/src/components/LoadingComponent/index.vue index f99998a4..34ff91fd 100644 --- a/src/components/LoadingComponent/index.vue +++ b/src/components/LoadingComponent/index.vue @@ -1,7 +1,7 @@