orders.wxml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!--pages/orders/orders.wxml-->
  2. <view class="container">
  3. <navigation-bar title="我的订单"></navigation-bar>
  4. <view class="record-content">
  5. <view class="record-tab">
  6. <view wx:for="{{tabList}}" wx:key="id" class="{{item.id == tabIdx ? 'active' : ''}}" catch:tap="switchTab" data-idx="{{item.id}}">
  7. {{item.label}}
  8. </view>
  9. </view>
  10. <scroll-view class="record-list" type="list" scroll-y bindscrolltolower="loadMore">
  11. <block wx:if="{{ recordList.length }}">
  12. <view class="list-item-group">
  13. <view class="list-item" wx:for="{{recordList}}" wx:key="index" data-orderno="{{item.orderNo}}" bind:tap="onDetail">
  14. <!-- <view class="item-top">
  15. <view class="item-mid">订单号:{{ item.orderNo }}</view>
  16. <text class="{{ item.wechatStatus == 'WAIT_PAY' || item.wechatStatus == 'WAIT_USE' ? 'red' : '' }}">{{ item.statusName }}</text>
  17. </view> -->
  18. <view class="item-content" wx:for="{{item.studentPaymentOrderDetails}}" wx:key="studentIndex">
  19. <image class='goods-icon' src="{{item.goodsUrl}}" mode="" />
  20. <view class="goods-desc">
  21. <view class="goodsInfo">
  22. <view class="goods-name">
  23. <text class="{{ outerItem.wechatStatus == 'WAIT_PAY' || outerItem.wechatStatus == 'WAIT_USE' ? 'red' : '' }}">{{ outerItem.statusName }}</text>
  24. {{item.goodsName}}
  25. </view>
  26. <view class="goods-price">¥ {{(item.originalPrice)}}</view>
  27. </view>
  28. <view class="goods-type">
  29. <view class="goods-card" wx:if="{{ item.typeName }}">{{item.typeName}}</view>
  30. <view class="goods-num">共 1 件</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="item-footer">
  35. <view class="order-price">
  36. <!-- 订单金额:<text class="price">¥ {{item.amount}}</text> -->
  37. 订单号:{{ item.orderNo }}
  38. </view>
  39. <button class="sure" type="primary" wx:if="{{ item.wechatStatus == 'WAIT_PAY' }}" catch:tap="onPay" data-id="{{item.id}}">继续支付</button>
  40. <button type="primary" wx:else catch:tap="onOne" data-id="{{item.id}}">再次购买</button>
  41. </view>
  42. </view>
  43. </view>
  44. </block>
  45. <block wx:else>
  46. <view class="empty-box">
  47. <image src="https://oss.dayaedu.com/ktyq/1731839238916.png"></image>
  48. <view class="empty-text">暂无订单</view>
  49. </view>
  50. </block>
  51. </scroll-view>
  52. </view>
  53. </view>