From 4c85569b764b176c9c3a7f9ba3092ff3567e5512 Mon Sep 17 00:00:00 2001 From: Soybean <2570172956@qq.com> Date: Mon, 25 Oct 2021 11:56:17 +0800 Subject: [PATCH] =?UTF-8?q?feat(projects):=20=E5=B7=A5=E4=BD=9C=E5=8F=B0?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/custom/ShadowCard/index.vue | 8 +++++ src/components/custom/index.ts | 3 +- src/components/index.ts | 2 +- .../components/GlobalContent/index.vue | 2 +- src/views/dashboard/workbench/index.vue | 33 ++++++++++++++----- 5 files changed, 37 insertions(+), 11 deletions(-) create mode 100644 src/components/custom/ShadowCard/index.vue diff --git a/src/components/custom/ShadowCard/index.vue b/src/components/custom/ShadowCard/index.vue new file mode 100644 index 00000000..4be52e07 --- /dev/null +++ b/src/components/custom/ShadowCard/index.vue @@ -0,0 +1,8 @@ + + + + diff --git a/src/components/custom/index.ts b/src/components/custom/index.ts index 52d517bf..7cd335f7 100644 --- a/src/components/custom/index.ts +++ b/src/components/custom/index.ts @@ -2,5 +2,6 @@ import CountTo from './CountTo/index.vue'; import IconClose from './IconClose/index.vue'; import ButtonTab from './ButtonTab/index.vue'; import ChromeTab from './ChromeTab/index.vue'; +import ShadowCard from './ShadowCard/index.vue'; -export { CountTo, IconClose, ButtonTab, ChromeTab }; +export { CountTo, IconClose, ButtonTab, ChromeTab, ShadowCard }; diff --git a/src/components/index.ts b/src/components/index.ts index 94a251f2..e8293fd4 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,2 +1,2 @@ export { AppProviderContent, SystemLogo, ExceptionSvg, LoginBg, BannerSvg, HoverContainer } from './common'; -export { CountTo, IconClose, ButtonTab, ChromeTab } from './custom'; +export { CountTo, IconClose, ButtonTab, ChromeTab, ShadowCard } from './custom'; diff --git a/src/layouts/BasicLayout/components/GlobalContent/index.vue b/src/layouts/BasicLayout/components/GlobalContent/index.vue index 5e11bd45..dc156f98 100644 --- a/src/layouts/BasicLayout/components/GlobalContent/index.vue +++ b/src/layouts/BasicLayout/components/GlobalContent/index.vue @@ -1,6 +1,6 @@