index.wxml 883 B

1234567891011121314151617181920212223242526
  1. <view style="width: 85%;height:800rpx;overflow:hidden;margin: 0 auto 40rpx;">
  2. <calendar
  3. calendarConfig="{{calendarConfig}}"
  4. bind:onSwipe="onSwipe"
  5. bind:onTapDay="onTapDay"
  6. bind:afterTapDay="afterTapDay"
  7. bind:whenChangeWeek="whenChangeWeek"
  8. bind:whenChangeMonth="whenChangeMonth"
  9. bind:afterCalendarRender="afterCalendarRender"
  10. ></calendar>
  11. </view>
  12. <view class='b cc wrap btn-wrap'>
  13. <button
  14. class='b cc btn btn-{{item.color}} btn-action-{{item.action}}'
  15. wx:for="{{actionBtn}}"
  16. wx:key="action"
  17. data-action="{{item.action}}"
  18. data-disable="{{item.disable}}"
  19. bindtap="handleAction">{{item.text}}</button>
  20. </view>
  21. <view class="show-rst-wrap">
  22. <view wx:if="{{rst}}" wx:for="{{rst}}" wx:key="index" class="show-rst">{{item}}</view>
  23. <view wx:if="{{rstStr}}" wx:key="index" class="show-rst">{{rstStr}}</view>
  24. </view>