From 52d908381360de6a6168bd763fd9a2dbe26ac7b3 Mon Sep 17 00:00:00 2001 From: yuanshan <42023847+piercezzs@users.noreply.github.com> Date: Fri, 10 Oct 2025 16:53:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E5=88=86=E8=BE=A8=E7=8E=87?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/customEcharts/index.vue | 4 ++-- src/components/customFooter/index.vue | 2 +- src/views/events-calendar/index.vue | 2 +- src/views/news/index.vue | 2 +- src/views/press-releases/index.vue | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/customEcharts/index.vue b/src/components/customEcharts/index.vue index 6cacf04..cf105f4 100644 --- a/src/components/customEcharts/index.vue +++ b/src/components/customEcharts/index.vue @@ -15,9 +15,9 @@ const { t } = useI18n(); const viewComponent = computed(() => { const viewWidth = width.value; - if (viewWidth <= 500) { + if (viewWidth <= 450) { return size375; - } else if (viewWidth <= 960) { + } else if (viewWidth <= 1100) { return size768; } else if (viewWidth <= 1500) { return size1440; diff --git a/src/components/customFooter/index.vue b/src/components/customFooter/index.vue index 6f8752d..6f45198 100644 --- a/src/components/customFooter/index.vue +++ b/src/components/customFooter/index.vue @@ -15,7 +15,7 @@ const { t } = useI18n(); const viewComponent = computed(() => { const viewWidth = width.value; - if (viewWidth <= 500) { + if (viewWidth <= 450) { return size375; } else if (viewWidth <= 1100) { return size768; diff --git a/src/views/events-calendar/index.vue b/src/views/events-calendar/index.vue index aaeaa11..5ee0c3e 100644 --- a/src/views/events-calendar/index.vue +++ b/src/views/events-calendar/index.vue @@ -16,7 +16,7 @@ const viewComponent = computed(() => { const viewWidth = width.value; if (viewWidth <= 450) { return size375; - } else if (viewWidth <= 768) { + } else if (viewWidth <= 1100) { return size768; } else if (viewWidth <= 1500) { return size1440; diff --git a/src/views/news/index.vue b/src/views/news/index.vue index 6e4a146..6f06e65 100644 --- a/src/views/news/index.vue +++ b/src/views/news/index.vue @@ -16,7 +16,7 @@ const viewComponent = computed(() => { const viewWidth = width.value; if (viewWidth <= 450) { return size375; - } else if (viewWidth <= 768) { + } else if (viewWidth <= 1100) { return size768; } else if (viewWidth <= 1500) { return size1440; diff --git a/src/views/press-releases/index.vue b/src/views/press-releases/index.vue index 70f9b75..76f873a 100644 --- a/src/views/press-releases/index.vue +++ b/src/views/press-releases/index.vue @@ -16,7 +16,7 @@ const viewComponent = computed(() => { const viewWidth = width.value; if (viewWidth <= 450) { return size375; - } else if (viewWidth <= 768) { + } else if (viewWidth <= 1100) { return size768; } else if (viewWidth <= 1500) { return size1440;