hookehuyr

fix(视图): 调整中等屏幕手机的日历高度比例

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