From a277f1533b03c2ddc8ec8cb22677546e19940987 Mon Sep 17 00:00:00 2001 From: wangxiaogang <1433729587@qq.com> Date: Tue, 9 Jun 2026 09:06:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A6=96=E9=A1=B5=E5=88=B7=E6=96=B0/?= =?UTF-8?q?=E5=8F=8D=E9=A6=88=E6=8C=89=E9=92=AE/=E5=91=A8=E6=9C=9F?= =?UTF-8?q?=E9=94=AE=E7=9B=98=E4=B8=89=E4=B8=AA=20bug=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/pages/admin/feedback.vue | 6 +++--- client/src/pages/index/index.vue | 3 ++- client/src/pages/recurring/index.vue | 13 +++++++++++-- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/client/src/pages/admin/feedback.vue b/client/src/pages/admin/feedback.vue index 7dcff15..1b50c0a 100644 --- a/client/src/pages/admin/feedback.vue +++ b/client/src/pages/admin/feedback.vue @@ -52,13 +52,13 @@ - + 标记处理 - + 忽略 - + 重新打开 diff --git a/client/src/pages/index/index.vue b/client/src/pages/index/index.vue index f40677a..febf033 100644 --- a/client/src/pages/index/index.vue +++ b/client/src/pages/index/index.vue @@ -270,8 +270,9 @@ onMounted(() => { }) // Refresh data when returning from other pages (e.g., after adding a transaction) +// force=true 跳过缓存 TTL,确保新记录立即可见 onShow(() => { - if (initialLoaded.value && !loading.value) loadData(true, false) + if (initialLoaded.value && !loading.value) loadData(true, true) }) onPullDownRefresh(() => { diff --git a/client/src/pages/recurring/index.vue b/client/src/pages/recurring/index.vue index 3860f1d..f1c18cd 100644 --- a/client/src/pages/recurring/index.vue +++ b/client/src/pages/recurring/index.vue @@ -141,8 +141,10 @@ - - + + + + @@ -497,4 +499,11 @@ function goBack() { uni.navigateBack() } &.active { background: $primary; color: $surface; border-color: $primary; } &:active { opacity: 0.8; } } + +/* Numpad 位于弹窗上方 */ +.form-numpad { + position: fixed; bottom: 0; left: 0; right: 0; z-index: 250; + background: $surface; + padding-bottom: env(safe-area-inset-bottom); +}