From dc4d26965d00ea87be49dbe2c32141c3991128e3 Mon Sep 17 00:00:00 2001 From: csc <869898671@qq.com> Date: Fri, 17 Oct 2025 02:23:27 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=91=98=E4=B8=BB=E9=A1=B5?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/home/modules/header-banner.vue | 48 +++++++++---------- .../dromara/mps/mapper/MpsMarketMapper.java | 5 ++ .../controller/StatisticsController.java | 44 +++++++++++------ .../resources/mapper/mps/MpsMarketMapper.xml | 13 +++++ 4 files changed, 72 insertions(+), 38 deletions(-) diff --git a/cds-fontend-2025.V1/src/views/home/modules/header-banner.vue b/cds-fontend-2025.V1/src/views/home/modules/header-banner.vue index 862dab1..5f22f41 100644 --- a/cds-fontend-2025.V1/src/views/home/modules/header-banner.vue +++ b/cds-fontend-2025.V1/src/views/home/modules/header-banner.vue @@ -14,29 +14,29 @@ const authStore = useAuthStore(); const gap = computed(() => (appStore.isMobile ? 0 : 16)); -interface StatisticData { - id: number; - label: string; - value: string; -} - -const statisticData = computed(() => [ - { - id: 0, - label: $t('page.home.projectCount'), - value: '25' - }, - { - id: 1, - label: $t('page.home.todo'), - value: '4/16' - }, - { - id: 2, - label: $t('page.home.message'), - value: '12' - } -]); +// interface StatisticData { +// id: number; +// label: string; +// value: string; +// } +// +// const statisticData = computed(() => [ +// { +// id: 0, +// label: $t('page.home.projectCount'), +// value: '25' +// }, +// { +// id: 1, +// label: $t('page.home.todo'), +// value: '4/16' +// }, +// { +// id: 2, +// label: $t('page.home.message'), +// value: '12' +// } +// ]);