recommendOrderDetail.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!--pages/recommendOrderDetail/recommendOrderDetail.wxml-->
  2. <!-- 顶部订单号和头像 -->
  3. <view class="headWrapper">
  4. <view>
  5. <text>订单号</text>
  6. <text class="orderNumDetail">xxxx</text>
  7. </view>
  8. <image class="headImg" src="../../images/zly.jpeg"></image>
  9. </view>
  10. <!-- 需求信息 -->
  11. <view>
  12. <view class="need">
  13. <text>需求号</text>
  14. <text class="needDetail">xxx</text>
  15. </view>
  16. <view class="need">
  17. <text>课程号</text>
  18. <text class="needDetail">xxx</text>
  19. </view>
  20. <view class="need">
  21. <text>需求金额</text>
  22. <text class="needMoney">xxx</text>
  23. </view>
  24. </view>
  25. <!-- 订单信息 -->
  26. <view>
  27. <view class="orderContent">
  28. <text class="orderContentTitle">订单内容</text>
  29. <text class="orderDetail">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</text>
  30. </view>
  31. <view class="order">
  32. <text>下单日期</text>
  33. <text class="orderDate">2022-12-22</text>
  34. </view>
  35. </view>
  36. <!-- 推荐人佣金及提现状态 -->
  37. <view>
  38. <view class="commission">
  39. <text>推荐人佣金</text>
  40. <text class="commissionNum">xxx</text>
  41. </view>
  42. <view class="withdraw">
  43. <text>提现状态</text>
  44. <text class="withdrawStatus">{{withdrawStatus}}</text>
  45. </view>
  46. </view>
  47. <view wx:if="{{withdrawStatus == '未申请'}}" class="apply" bindtap="toApplyWithdraw">
  48. <text class="applyWithdraw">申请提现</text>
  49. </view>