piano.wxml 611 B

123456789101112131415161718192021
  1. <view class="container">
  2. <!-- 时间筛选 -->
  3. <selectDate></selectDate>
  4. <!-- end -->
  5. <view class="piano-list">
  6. <view class="piano-box" wx:for="{{list}}" wx:key="index">
  7. <view class="piano-detail">
  8. <view class="piano-title">钢琴编号1</view>
  9. <view class="addr">智慧汉阳校区</view>
  10. <view class="piano-time">2021-02-20 14:00 ~ 14:45</view>
  11. </view>
  12. <view class="piano-date">
  13. 2021-02-02 10:18
  14. </view>
  15. </view>
  16. </view>
  17. <view class="getPiano" bindtap="getPiano">去预约</view>
  18. <view class="loading">{{loading}}</view>
  19. </view>