Style:UI优化

This commit is contained in:
LinCyJang
2025-11-01 14:41:16 +08:00
parent 76d9d8ef33
commit f7cf56216b
5 changed files with 76 additions and 15 deletions
@@ -3,9 +3,12 @@
<u-popup :show="show" @close="handleClose" mode="center" round="16" closeable>
<view class="picker-container">
<view class="picker-header">
<text class="title">选择日期范围</text>
<text class="title">查看可预约日期</text>
</view>
<view class="v12-my-3">
<text class="v12-font-28 v12-dark-text v12-mr-3">请选择入住日期</text>
<text class="v12-font-28 v12-primary-text">{{ ` 共计${minBookingDays}` }}</text>
</view>
<view class="calendar">
<view class="calendar-header">
<view class="month-nav">
@@ -14,7 +17,7 @@
<text class="nav-btn" @click="changeMonth(1)"></text>
</view>
<view class="weekdays">
<text v-for="day in ['日', '一', '二', '三', '四', '五', '六']" :key="day" class="weekday">
<text v-for="day in ['日', '一', '二', '三', '四', '五', '六']" :key="day" class="weekday v12-dark-text">
{{ day }}
</text>
</view>
@@ -496,7 +499,7 @@ export default {
.month-nav {
display: flex;
align-items: center;
justify-content: space-between;
justify-content: space-evenly;
margin-bottom: 20rpx;
padding: 0 20rpx;