index.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="time-select-container">
  2. <view class="time-select-header">
  3. <view class="time-select-title">请选择参观日期</view>
  4. <view class="month-selector">
  5. <view class="arrow prev" bindtap="prevMonth">
  6. <image src="https://sit-kelamayi.4dage.com/mini/wxImg/icon_left.png" class="arrow-icon"></image>
  7. </view>
  8. <view class="current-month">{{currentYearMonth}}</view>
  9. <view class="arrow next" bindtap="nextMonth">
  10. <image src="https://sit-kelamayi.4dage.com/mini/wxImg/icon_right.png" class="arrow-icon"></image>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="calendar">
  15. <!-- 星期标题 -->
  16. <view class="weekdays">
  17. <view class="weekday" wx:for="{{weekdays}}" wx:key="index">{{item}}</view>
  18. </view>
  19. <!-- 日期网格 -->
  20. <view class="days-grid">
  21. <view
  22. wx:for="{{daysInMonth}}"
  23. wx:key="index"
  24. class="day-cell {{item.cssClass}}"
  25. bindtap="selectDay"
  26. data-index="{{index}}"
  27. >
  28. <view class="day-number" wx:if="{{!item.isEmpty}}">{{item.date}}</view>
  29. <view class="day-status" wx:if="{{!item.isEmpty}}">{{item.status}}</view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>