index.wxml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <view class="container">
  2. <view class="categoryBox">
  3. <view class="category {{currentIndex==item.id?'currentClass':''}}" wx:for="{{categoryList}}" wx:key="id"
  4. data-index="{{item.id}}" data-title='{{item.title}}' bindtap="setClass">
  5. {{item.title}}
  6. </view>
  7. </view>
  8. <scroll-view class="orderList" scroll-y="true" enhanced show-scrollbar="{{false}}" bindscrolltolower='loadMore'>
  9. <view class="tips">温馨提示:退款的订单不计入收益系统 <view class="close">×</view>
  10. </view>
  11. <view class="order" wx:for="{{5}}" wx:key="index">
  12. <view class="above">
  13. <view class="userInfo">
  14. <image src="https://reader-wx.ai160.com/reader/resource/20230215/1676472360368723.jpg"
  15. class="avatar" />
  16. <view>
  17. <view class="nickName">刘聪{{index}}</view>
  18. <view class="addTime">
  19. 加入时间 :20230-08-27 14:00
  20. </view>
  21. </view>
  22. </view>
  23. <view class="state">已付款</view>
  24. </view>
  25. <view class="below">
  26. <view class="row">
  27. <view>购买类型:1个月VIP</view>
  28. <view>付款金额 <text class="money">199元</text>
  29. </view>
  30. </view>
  31. <view class="row" style="font-size: 22rpx;">
  32. <view>
  33. 2023-08-27 23:33:21付款
  34. </view>
  35. <view>
  36. 2023-09-03 23:33:21退款
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </scroll-view>
  42. </view>