From e2555dc01525450ef764477cd692311bc43b6530 Mon Sep 17 00:00:00 2001 From: zheng020 Date: Tue, 2 Jun 2026 22:45:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(dashboard):=20CollectionMatrix=20=E5=AE=B9?= =?UTF-8?q?=E5=99=A8=20+=20TopFiveAssets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dashboard/components/CollectionMatrix.vue | 40 +++++++ .../dashboard/components/TopFiveAssets.vue | 111 ++++++++++++++++++ frontend/pages/dashboard/dashboard.vue | 6 + 3 files changed, 157 insertions(+) create mode 100644 frontend/pages/dashboard/components/CollectionMatrix.vue create mode 100644 frontend/pages/dashboard/components/TopFiveAssets.vue diff --git a/frontend/pages/dashboard/components/CollectionMatrix.vue b/frontend/pages/dashboard/components/CollectionMatrix.vue new file mode 100644 index 0000000..a40c085 --- /dev/null +++ b/frontend/pages/dashboard/components/CollectionMatrix.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/frontend/pages/dashboard/components/TopFiveAssets.vue b/frontend/pages/dashboard/components/TopFiveAssets.vue new file mode 100644 index 0000000..d157319 --- /dev/null +++ b/frontend/pages/dashboard/components/TopFiveAssets.vue @@ -0,0 +1,111 @@ + + + + + diff --git a/frontend/pages/dashboard/dashboard.vue b/frontend/pages/dashboard/dashboard.vue index 96d6e26..2b9da89 100644 --- a/frontend/pages/dashboard/dashboard.vue +++ b/frontend/pages/dashboard/dashboard.vue @@ -32,6 +32,11 @@ :error="error.likeIncome" @retry="refresh('likeIncome')" /> + @@ -52,6 +57,7 @@ import CrystalOverview from './components/CrystalOverview.vue' import IncomeCurve from './components/IncomeCurve.vue' import ExhibitionCenter from './components/ExhibitionCenter.vue' import LikeIncomeBoard from './components/LikeIncomeBoard.vue' +import CollectionMatrix from './components/CollectionMatrix.vue' import { useDashboardData } from '@/composables/useDashboardData' const pageBg = 'linear-gradient(153deg, #FF9597 0%, #80DFFF 33%, #B8B8B8 74%, #D9D9D9 100%)'