fix: 修复列表页浮动添加按钮被底部Tabbar遮挡的问题

将列表页浮动添加按钮的bottom值从24px调整为80px:
- receivable/List.vue
- expense/List.vue
- requirement/List.vue

Tabbar高度64px,添加按钮需要预留足够空间避免被遮挡
This commit is contained in:
zhangjf 2026-02-23 12:43:42 +08:00
parent 205af48cb6
commit b5a954f008
3 changed files with 3 additions and 3 deletions

View File

@ -201,7 +201,7 @@ const handleSearch = () => {
.add-btn { .add-btn {
position: fixed; position: fixed;
bottom: 24px; bottom: 80px;
right: 24px; right: 24px;
width: 56px; width: 56px;
height: 56px; height: 56px;

View File

@ -261,7 +261,7 @@ onMounted(() => {
.add-btn { .add-btn {
position: fixed; position: fixed;
bottom: 24px; bottom: 80px;
right: 24px; right: 24px;
width: 56px; width: 56px;
height: 56px; height: 56px;

View File

@ -217,7 +217,7 @@ const handleSearch = () => {
.add-btn { .add-btn {
position: fixed; position: fixed;
bottom: 24px; bottom: 80px;
right: 24px; right: 24px;
width: 56px; width: 56px;
height: 56px; height: 56px;