index.wxml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--index.wxml-->
  2. <com-header page-title="{{ pageTitle }}" show-back="{{ showBack }}" show-header="{{ showHeader }}"></com-header>
  3. <view class="wrap">
  4. <view class="wrap_t">
  5. <image class="banner" src="/statics/img/success_bg.png"></image>
  6. </view>
  7. <view class="order_wrap">
  8. <view class="order_t">
  9. <image class="icon_success" src="/statics/img/icon_success.png"></image>
  10. <view class="tips">支付成功</view>
  11. <view class="desc">您的订单会快速进行处理</view>
  12. <view class="price"><text class="unit">¥</text>{{ orderInfo.pay_price }}</view>
  13. </view>
  14. <image class="order_nr_t" src="/statics/img/line_tu.png"></image>
  15. <view class="order_nr">
  16. <view class="order_item">
  17. <text class="item_l">订单编号:</text>
  18. <text class="item_r">{{ orderInfo.order_num }}</text>
  19. </view>
  20. <view class="order_item">
  21. <text class="item_l">下单时间:</text>
  22. <text class="item_r">{{ orderInfo.created_at }}</text>
  23. </view>
  24. <view class="order_item">
  25. <text class="item_l">支付方式:</text>
  26. <text class="item_r">{{ orderInfo.pay_name }}</text>
  27. </view>
  28. <view class="order_item">
  29. <text class="item_l">交易时间:</text>
  30. <text class="item_r">{{ orderInfo.pay_at }}</text>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="btn_wrap" bind:tap="toOrderDetail">
  35. <view class="btn">订单详情</view>
  36. </view>
  37. </view>