hookehuyr

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

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