appointment.axml 940 B

123456789101112131415161718192021
  1. <wrapper>
  2. <view class="appointment-list" a:for="{{ appointmentList }}">
  3. <view class="appointment-list-item">
  4. <view class="title">{{ item.date }}</view>
  5. <view class="appointment-content" a:for="{{ item.appointList }}" a:for-item="itemAppointment">
  6. <view class="appointment-time">
  7. <view class="appointment-time-left">
  8. <text>{{ itemAppointment.time }}</text>
  9. <text class="rest-number">剩余 {{ itemAppointment.rest }}</text>
  10. </view>
  11. <view class="appointment-time-right">
  12. ¥ {{ itemAppointment.price }}
  13. </view>
  14. </view>
  15. <view class="appointment-btn">
  16. <view class="appoint" onTap="appointBtn">预约</view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </wrapper>