orders.wxml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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}}" data-wechatstatus="{{item.wechatStatus}}" bind:tap="onDetail">
  14. <view class="item-top">
  15. <view class="item-mid">订单编号:{{ item.orderNo }}</view>
  16. <text class="{{ item.wechatStatus == 'WAIT_PAY' ? 'red' : item.wechatStatus == 'CLOSED' ? 'cancel' : '' }}">{{ 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">{{ item.goodsName }}</view>
  23. </view>
  24. <view class="goods-type">
  25. <view class="goods-price">
  26. <text class="stuff">¥</text>
  27. <text class="priceZ">{{ item.integerPart }}</text>
  28. <text class="priceF">.{{ item.decimalPart }}</text>
  29. </view>
  30. <view class="origin-price">|日常价 ¥ {{item.originalPrice}}</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="item-footer">
  35. <view class="order-price">
  36. <view class="discountPrice" wx:if="{{ item.originalPrice > item.amount }}">
  37. 已省<text class="suffix">¥</text><text class="price">{{item.discountPrice}}</text>
  38. </view>
  39. <view class="countPrice">
  40. 合计<text class="suffix">¥</text><text class="price">{{item.amount}}</text>
  41. </view>
  42. </view>
  43. <button class="sure" type="primary" wx:if="{{ item.wechatStatus == 'WAIT_PAY' }}" catch:tap="onPay" data-id="{{item.id}}">继续支付</button>
  44. </view>
  45. </view>
  46. </view>
  47. </block>
  48. <block wx:else>
  49. <view class="empty-box">
  50. <image src="https://oss.dayaedu.com/ktyq/1732182740363.png"></image>
  51. <view class="empty-text">暂无订单</view>
  52. </view>
  53. </block>
  54. </scroll-view>
  55. </view>
  56. <!-- 客服 -->
  57. <service wx:if="{{ serviceShow }}"></service>
  58. <!-- 申请退款 -->
  59. <apply-refound refoundStatus="{{ refoundStatus }}" goodsInfo="{{goodsInfo}}" bind:changeRefoundStatus="changeRefoundStatus" bind:onConfirm="onRefoundComfirm"></apply-refound>
  60. </view>