From 9055b95d0034164e3ae7d5e3b4b2f20bec7f91d8 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Mon, 31 Mar 2025 19:27:47 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=A4=9A=E4=B8=AA=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E6=A0=B7=E5=BC=8F=EF=BC=8C=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E9=AB=98=E5=BA=A6=E8=AE=A1=E7=AE=97=E5=B9=B6=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=20scoped=20=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/FileBrowser.vue | 8 ++++---- src/layouts/components/Footer.vue | 2 +- src/views/reorganize/TransferHistoryView.vue | 6 +++--- src/views/subscribe/FullCalendarView.vue | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/FileBrowser.vue b/src/components/FileBrowser.vue index 12d01c0f..0452c06c 100644 --- a/src/components/FileBrowser.vue +++ b/src/components/FileBrowser.vue @@ -174,15 +174,15 @@ function fileListUpdated(items: FileItem[]) { // 外层DIV大小控制 const scrollStyle = computed(() => { return appMode - ? 'height: calc(100vh - 12rem - env(safe-area-inset-bottom) - 3.5rem)' - : 'height: calc(100vh - 10.5rem - env(safe-area-inset-bottom)' + ? 'height: calc(100vh - 10rem - env(safe-area-inset-bottom) - 6rem)' + : 'height: calc(100vh - 10rem - env(safe-area-inset-bottom)' }) // 文件列表大小限制 const fileListStyle = computed(() => { return appMode - ? 'height: calc(100vh - 16rem - env(safe-area-inset-bottom) - 3.5rem)' - : 'height: calc(100vh - 14.5rem - env(safe-area-inset-bottom)' + ? 'height: calc(100vh - 14rem - env(safe-area-inset-bottom) - 6rem)' + : 'height: calc(100vh - 14rem - env(safe-area-inset-bottom)' }) diff --git a/src/layouts/components/Footer.vue b/src/layouts/components/Footer.vue index 9cb43ce6..0a2cc127 100644 --- a/src/layouts/components/Footer.vue +++ b/src/layouts/components/Footer.vue @@ -84,7 +84,7 @@ const currentPath = computed(() => route.path) -