index.wxml 557 B

123456789101112
  1. <wxs src="./index.wxs" module="computed"></wxs>
  2. <view class="calendar-mounth-container">
  3. <view class="title" wx:if="{{ showMonthTitle }}">
  4. {{ computed.formatMonthTitle(date) }}
  5. </view>
  6. <view class="calendar-day-container">
  7. <view class="calendar-day-wrap" wx:for="{{ days }}" wx:key="index">
  8. <day bind:tap="onClick" data-item="{{ item }}" wx:if="{{ item.type !== 'empty' }}" text="{{ item.text }}" topInfo="{{ item.topInfo }}" bottomInfo="{{ item.bottomInfo }}" type="{{ item.type }}" color=" {{ color }}"/>
  9. </view>
  10. </view>
  11. </view>