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;