123456789101112131415161718 |
- <view class="preview-contain">
- <view class="time-select">
- <active-time-select activity-data="{{activityData}}" bind:datechange="onDateChange"></active-time-select>
- <view class="divider"></view>
- <view class="select-moon" wx:if="{{selectedDate}}">
- <text class="moon-time">请选择进馆时间</text>
- <view class="morning-moon">
- <view class="time-card {{!isTimeExpired ? 'active' : ''}} {{isTimeExpired ? 'disabled' : ''}}" bindtap="selectTime">
- <view class="time-range">({{currentActivityTime || activityData.time}})</view>
- <view class="availability">{{'余票' + currentTicketCount + '张'}}</view>
- <view class="check-icon" wx:if="{{!isTimeExpired}}">✓</view>
- </view>
-
- <view class="next-btn {{!currentTicketCount || isTimeExpired ? 'disabled' : ''}}" bindtap="goNext" disabled="{{!currentTicketCount || isTimeExpired}}">下一步</view>
- </view>
- </view>
- </view>
- </view>
|