index.wxml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <view class="body">
  2. <view class="tab">
  3. <view class="tab-item {{tabCurrent === index ? 'active': ''}}"
  4. wx:for="{{tab}}"
  5. wx:key="name"
  6. data-index="{{index}}"
  7. bind:tap="changeTab">
  8. <text>{{item.text}}</text>
  9. </view>
  10. </view>
  11. <view class="list">
  12. <view class="jl-card">
  13. <view class="jl-card-head">
  14. <view class="jl-card-head-title">水氧清洁水光提升</view>
  15. <view class="jl-card-head-status">待用户确认</view>
  16. </view>
  17. <view class="jl-card-order">
  18. <image class="jl-card-order-img" src="" />
  19. <view class="jl-card-order-right">
  20. <view class="jl-card-order-label">预约店铺:西丽店</view>
  21. <view class="jl-card-order-label">预约时间:2021/8/7 8:00~9</view>
  22. <view class="jl-card-order-label">设备:无针水光</view>
  23. </view>
  24. </view>
  25. <view class="jl-card-money">实付:<text>¥888.88</text></view>
  26. </view>
  27. </view>
  28. </view>