active-page.wxml 970 B

123456789101112131415161718
  1. <view class="preview-contain">
  2. <view class="time-select">
  3. <active-time-select activity-data="{{activityData}}" bind:datechange="onDateChange"></active-time-select>
  4. <view class="divider"></view>
  5. <view class="select-moon" wx:if="{{selectedDate}}">
  6. <text class="moon-time">请选择进馆时间</text>
  7. <view class="morning-moon">
  8. <view class="time-card {{!isTimeExpired ? 'active' : ''}} {{isTimeExpired ? 'disabled' : ''}}" bindtap="selectTime">
  9. <view class="time-range">({{currentActivityTime || activityData.time}})</view>
  10. <view class="availability">{{'余票' + currentTicketCount + '张'}}</view>
  11. <view class="check-icon" wx:if="{{!isTimeExpired}}">✓</view>
  12. </view>
  13. <view class="next-btn {{!currentTicketCount || isTimeExpired ? 'disabled' : ''}}" bindtap="goNext" disabled="{{!currentTicketCount || isTimeExpired}}">下一步</view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>