From c763bc0fb7e8dbfbef38764e11cddd30e71f4d4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E8=AF=9A?= Date: Thu, 25 Dec 2025 16:24:21 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=BB=86=E8=8A=82=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/src/App.vue | 2 +- Web/src/views/CalendarView.vue | 65 ++++++++++++---------------- Web/src/views/TransactionsRecord.vue | 1 - 3 files changed, 29 insertions(+), 39 deletions(-) diff --git a/Web/src/App.vue b/Web/src/App.vue index c58a3d5..22307e6 100644 --- a/Web/src/App.vue +++ b/Web/src/App.vue @@ -66,7 +66,7 @@ const handleTabClick = (path) => { @media only screen and (max-width: 768px) { :deep(.van-tabbar) { /* 为小白条添加额外高度 */ - padding-bottom: env(safe-area-inset-bottom); + padding-bottom: max(10px, calc(env(safe-area-inset-bottom) - 20px)); } } diff --git a/Web/src/views/CalendarView.vue b/Web/src/views/CalendarView.vue index 1c35f6e..3600601 100644 --- a/Web/src/views/CalendarView.vue +++ b/Web/src/views/CalendarView.vue @@ -1,51 +1,28 @@