hookehuyr

style(views/checkin): 更新日历选中日期的样式

将日历选中日期的背景色改为白色,添加金色边框和文字颜色以提升视觉效果
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-11-13 18:32:20 4 + * @LastEditTime: 2025-11-14 11:11:16
5 * @FilePath: /mlaj/src/views/checkin/IndexCheckInPage.vue 5 * @FilePath: /mlaj/src/views/checkin/IndexCheckInPage.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -856,7 +856,9 @@ const formatData = (data) => { ...@@ -856,7 +856,9 @@ const formatData = (data) => {
856 856
857 .calendar-fill-checkin { 857 .calendar-fill-checkin {
858 .van-calendar__selected-day { 858 .van-calendar__selected-day {
859 - background: #a2d8a3 !important; 859 + background: #FFF !important;
860 + border: 1px solid darkgoldenrod !important;
861 + color: darkgoldenrod !important;
860 } 862 }
861 } 863 }
862 864
......