hookehuyr

fix(IndexCheckInPage): 调整小屏和平板设备的日历高度比例

<!--
* @Date: 2025-05-29 15:34:17
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-26 10:14:04
* @LastEditTime: 2025-08-26 11:52:20
* @FilePath: /mlaj/src/views/checkin/IndexCheckInPage.vue
* @Description: 文件描述
-->
......@@ -211,13 +211,13 @@ const calendarHeight = computed(() => {
if (windowWidth.value < 375) {
// 小屏手机
heightRatio = 0.75;
heightRatio = 0.95;
} else if (windowWidth.value < 414) {
// 中等屏幕手机
heightRatio = 0.95;
} else if (windowWidth.value >= 768) {
// 平板或更大屏幕
heightRatio = 0.75;
heightRatio = 0.95;
}
const calculatedHeight = Math.floor(availableHeight * heightRatio);
......