hookehuyr

fix(CollapsibleCalendar): 调整日历弹窗高度为60%

修复日历弹窗高度过小的问题,提升用户体验
1 <!-- 1 <!--
2 * @Date: 2025-01-25 15:34:17 2 * @Date: 2025-01-25 15:34:17
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-25 09:37:57 4 + * @LastEditTime: 2025-09-25 11:16:01
5 * @FilePath: /mlaj/src/components/ui/CollapsibleCalendar.vue 5 * @FilePath: /mlaj/src/components/ui/CollapsibleCalendar.vue
6 * @Description: 可折叠日历组件 6 * @Description: 可折叠日历组件
7 --> 7 -->
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
41 <van-popup 41 <van-popup
42 v-model:show="isExpanded" 42 v-model:show="isExpanded"
43 position="top" 43 position="top"
44 - :style="{ height: '50%' }" 44 + :style="{ height: '60%' }"
45 @close="collapseCalendar" 45 @close="collapseCalendar"
46 > 46 >
47 <div class="calendar-popup-content"> 47 <div class="calendar-popup-content">
......