hookehuyr

fix(IndexCheckInPage): 调整滚动区域样式避免底部按钮遮挡

移除固定高度和overflow,由AppLayout处理滚动
添加底部padding防止内容被遮挡
<!--
* @Date: 2025-05-29 15:34:17
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-10-15 09:58:47
* @LastEditTime: 2025-10-15 15:09:29
* @FilePath: /mlaj/src/views/checkin/IndexCheckInPage.vue
* @Description: 文件描述
-->
......@@ -792,8 +792,8 @@ const formatData = (data) => {
.scrollable-content {
margin-top: v-bind('calendarHeight + "px"'); // 动态计算日历高度
padding-top: 1rem;
height: v-bind('"calc(100vh - " + calendarHeight + "px)"'); // 动态计算剩余高度
overflow-y: auto;
padding-bottom: 6rem; // 添加底部padding,避免内容被底部按钮遮挡
// 移除固定高度和overflow,让AppLayout处理滚动
}
.van-back-top {
......