日历包裹容器样式调整

This commit is contained in:
WindowBird 2025-11-04 17:17:11 +08:00
parent 44c8d503c2
commit 6963de62ea

View File

@ -1,6 +1,8 @@
<template>
<!-- 顶部Tabs栏 -->
<view class="fixed-tabs">
<uv-tabs :list="topTabs" @click="clickTab"></uv-tabs>
</view>
<!-- 内容区域 -->
<view class="content-wrapper">
<!-- 月份日历组件 -->
@ -357,6 +359,7 @@ onShow(() => {
.fixed-tabs {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
@ -366,8 +369,10 @@ onShow(() => {
}
.content-wrapper {
padding-top: 8rpx;
min-height: 100vh;
overflow: hidden;
margin-top: var(--status-bar-height, 0);
}
:deep(.bottom-tabbar) { z-index: 1000 !important; }