orderDetail.wxml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <view class="container">
  2. <view class="order-info2" wx:if="{{wuliu}}">
  3. <view class="list-cell">
  4. <view class="list-cell-bd2">
  5. <view class="list-label strong2">
  6. <image src="../../../static/images/service-jyjl.png" class="icon"></image>
  7. {{orderInfo.order_status==0?"待付款":""}} {{orderInfo.order_status==100?"订单付款中":""}} {{orderInfo.order_status==101?"订单已取消":""}} {{orderInfo.order_status==201?"订单已付款":""}} {{orderInfo.order_status==300?"订单已发货":""}} {{orderInfo.order_status==301?"确认收货":""}}
  8. {{orderInfo.order_status==401 || orderInfo.order_status==402?"订单已退款":""}}
  9. </view>
  10. </view>
  11. </view>
  12. <view>
  13. <view class="list-cell">
  14. <view class="list-cell-bd">
  15. <view class="list-label week3">
  16. {{orderInfo.order_status==0?"您的订单待付款":""}} {{orderInfo.order_status==101?"您的订单已取消":""}} {{orderInfo.order_status==100?"您的订单正在付款中":""}} {{orderInfo.order_status==201?"您的订单已付款":""}} {{orderInfo.order_status==300?"您的订单已发货":""}} {{orderInfo.order_status==301?"用户已确认收货":""}}
  17. {{orderInfo.order_status==401 || orderInfo.order_status==402?"您的订单已退款":""}}
  18. </view>
  19. <view class="list-label week3" wx:if="{{orderInfo.order_status==201 && refundStatus == 3}}">
  20. 您的退款申请订单已被拒绝,拒绝原因:{{approvalRemark}}
  21. </view>
  22. <view class="list-label week4" style='margin-top:14rpx;' wx:if="{{orderInfo.buyerPayCheck==2}}">
  23. 检测到您的订购人与支付人身份证与姓名不一致,请申请维权进行退款操作,保税商品订付人的身份信息必须一致再重新下单
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view>
  29. <view class="list-cell" wx:if="{{orderInfo.order_status==0}}">
  30. <view class="list-cell-bd">
  31. <view class="list-label week3">
  32. 您的订单已提交,请在{{orderInfo.dateformat.min}}{{orderInfo.dateformat?':':''}}{{orderInfo.dateformat.sec}}内完成支付,超时订单自动取消</view>
  33. </view>
  34. </view>
  35. </view>
  36. <navigator open-type='navigate' wx:if="{{orderInfo.order_status==300 || orderInfo.order_status==301}}" url="/pages/ucenter/wuliu/wuliu?id={{orderInfo.shipping_no}}&code={{orderInfo.shipping_code}}&orderId={{orderInfo.id}}&goodsType={{orderInfo.orderBizType}}">
  37. <view class="list-cell">
  38. <view class="list-cell-bd">
  39. <view class="list-label week3">物流信息: {{wuliu.AcceptTime}}</view>
  40. </view>
  41. </view>
  42. <view class="list-cell">
  43. <view class="list-cell-bd">
  44. <view class="list-label week3">{{wuliu.AcceptStation}}</view>
  45. </view>
  46. </view>
  47. </navigator>
  48. </view>
  49. <view class="order-info">
  50. <view class="item-a">
  51. <image src="../../../static/images/service-hsdz.png" class="icon"></image> {{orderInfo.consignee}} {{orderInfo.mobile}}</view>
  52. <view class="item-b2">收货地址:{{orderInfo.province}}{{orderInfo.city}}{{orderInfo.district}}{{orderInfo.address}}</view>
  53. </view>
  54. <view class="list-group goods-info">
  55. <view class="list-cell">
  56. <view class="list-cell-bd">
  57. <view class="list-label strong">商品信息</view>
  58. </view>
  59. </view>
  60. <view class="list-cell">
  61. <view class="goods-list">
  62. <view wx:for="{{orderGoods}}" wx:key="{{index}}" class="goods-list-cell">
  63. <view wx:if='{{currentStoreId != orderInfo.store_id || (orderInfo.orderBizType ==02 || orderInfo.orderBizType == 10)}}'>
  64. <view style='width:100rpx;float:left;'><image class="order-image" src="{{item.list_pic_url}}"></image></view>
  65. <view style='width:500rpx;float:left;'>
  66. <text class="name">{{item.goods_name}}</text>
  67. <text class='attr'>{{null==item.goods_specification_name_value?"":item.goods_specification_name_value}}</text>
  68. </view>
  69. <view style='float:left;width:50rpx;'>
  70. <text class="price fr">¥{{item.retail_price}}</text>
  71. <text class="num fr">x{{item.number}}</text>
  72. </view>
  73. </view>
  74. <navigator open-type='navigate' wx:if='{{currentStoreId == orderInfo.store_id && (orderInfo.orderBizType ==00 || orderInfo.orderBizType == 11)}}' url='/pages/goods/goods?id={{item.goods_id}}&&storeId={{item.storeId}}'>
  75. <view style='width:100rpx;float:left;'><image class="order-image" src="{{item.list_pic_url}}"></image></view>
  76. <view style='width:500rpx;float:left;'>
  77. <view style='width:600rpx;'><text class='camps' style='color:white' wx:if="{{item.campTopicId}}">满减</text><text class='camps' style='color:white' wx:if="{{item.distcountTopicId}}">优惠</text><text class="name">{{item.goods_name}}</text></view>
  78. <view><text class='attr'>{{null==item.goods_specification_name_value?"":item.goods_specification_name_value}}</text></view>
  79. </view>
  80. <view style='float:left;width:50rpx;'>
  81. <text class="price fr">¥{{item.retail_price}}</text>
  82. <text class="num fr">x{{item.number}}</text>
  83. </view>
  84. </navigator>
  85. </view>
  86. </view>
  87. </view>
  88. <view class="list-cell">
  89. <view class="list-cell-bd">
  90. <view class="list-label week">商品总价</view>
  91. </view>
  92. <view class="list-cell-ft week">
  93. ¥{{orderInfo.goods_price}}
  94. </view>
  95. </view>
  96. <view class="list-cell">
  97. <view class="list-cell-bd">
  98. <view class="list-label week">运费</view>
  99. </view>
  100. <view class="list-cell-ft week">
  101. ¥{{orderInfo.freight_price}}
  102. </view>
  103. </view>
  104. <view class="list-cell" wx:if="{{orderInfo.full_cut_price}}">
  105. <view class="list-cell-bd">
  106. <view class="list-label week ">满减:
  107. <text class='orange'>{{orderInfo.campName}}{{orderInfo.applyType!='00'?'(部分商品减)':''}}</text>
  108. </view>
  109. </view>
  110. <view class="list-cell-ft week orange">
  111. -¥{{orderInfo.full_cut_price}}
  112. </view>
  113. </view>
  114. <view class="list-cell" wx:if="{{orderInfo.coupon_price}}">
  115. <view class="list-cell-bd">
  116. <view class="list-label week ">优惠券:
  117. <text class='orange'>{{orderInfo.coupon_name}}{{orderInfo.discountApplyType!='00'?'(部分商品减)':''}}</text>
  118. </view>
  119. </view>
  120. <view class="list-cell-ft week orange">
  121. -¥{{orderInfo.coupon_price}}
  122. </view>
  123. </view>
  124. <view class="list-cell">
  125. <view class="list-cell-bd">
  126. </view>
  127. <view class="list-cell-ft week">
  128. 实付款(含运费)
  129. <text class="orange">¥{{orderInfo.actual_price}}</text>
  130. <!-- <view class="refund" wx:if="{{ orderInfo.order_status == 201 }}" bindtap="refund">退款</view> -->
  131. </view>
  132. <view class="refund" wx:if='{{ orderInfo.order_status==201 && isRefundStatus =="true"}}'>维权申请中</view>
  133. </view>
  134. </view>
  135. <view class="order-info" wx:if="{{tabIndex != 5}}">
  136. <view class="item-a">下单时间:{{orderInfo.add_time}}</view>
  137. <view class="item-a" wx:if="{{orderInfo.pay_time}}">付款时间:{{orderInfo.pay_time}}</view>
  138. <view class="item-a" wx:if="{{orderInfo.confirm_time}}">成交时间:{{orderInfo.confirm_time}}</view>
  139. <view class="item-b">订单编号:{{orderInfo.order_sn}}
  140. <view style='font-size:26rpx;color:#d81e06;float:right;margin-right:30rpx;' bindtap="copyBtn">复制</view>
  141. </view>
  142. <!-- <view class="item-c">
  143. <view class="l">实付:
  144. <text class="cost">¥{{orderInfo.actual_price}}</text>
  145. </view>
  146. </view> -->
  147. </view>
  148. <view class="order-info" wx:if="{{tabIndex == 5}}">
  149. <view class="item-a">退款时间:{{refundTime}}</view>
  150. <view class="item-b">退款金额:¥{{refundInfo.refundMoney}}</view>
  151. <view class="item-b">申请时间:{{createTime}}</view>
  152. <view class="item-b">退款编号:{{refundInfo.refundId}}</view>
  153. </view>
  154. <view class="list-group2 goods-info" wx:if="{{tabIndex != 5}}">
  155. <view class="list-cell">
  156. <view class="list-cell-bd">
  157. <view class="list-label strong">送达信息</view>
  158. </view>
  159. </view>
  160. <view class="list-cell" wx:if="{{orderInfo.delivery_remark}}">
  161. <view class="list-cell-bd">
  162. <view class="list-label week">期望时间:{{orderInfo.delivery_remark}}</view>
  163. </view>
  164. </view>
  165. <!-- <view class="list-cell">
  166. <view class="list-cell-bd">
  167. <view class="list-label week">收货人:{{orderInfo.consignee}}</view>
  168. </view>
  169. </view>
  170. <view class="list-cell">
  171. <view class="list-cell-bd">
  172. <view class="list-label week">收货地址:{{orderInfo.address}}</view>
  173. </view>
  174. </view> -->
  175. <view class="list-cell">
  176. <view class="list-cell-bd">
  177. <view class="list-label week">留言:{{orderInfo.postscript?orderInfo.postscript:""}}</view>
  178. </view>
  179. </view>
  180. </view>
  181. <!-- <view class="r">
  182. <view class="btn" wx:if="{{ handleOption.cancel==true && orderInfo.order_type == '1'}}" bindtap="cancelOrder">取消订单</view>
  183. <view class="btn" wx:if="{{ handleOption.pay==true && orderInfo.dateformat }}" bindtap="payOrder">去付款 {{orderInfo.dateformat.min}}{{orderInfo.dateformat?':':''}}{{orderInfo.dateformat.sec}}</view>
  184. <view class="btn" wx:if="{{ handleOption.confirm==true }}" bindtap="confirmOrder">确认收货</view>
  185. <view class="btn" wx:if="{{ handleOption.comment==true }}" bindtap="postComment">发表评价</view>
  186. <view class="btn" wx:if="{{ orderInfo.comment_count > 0 }}" bindtap="lookComment">查看评价</view>
  187. </view> -->
  188. <view class="btns" wx:if="{{tabIndex != 5}}">
  189. <view class="cannel" wx:if="{{ handleOption.cancel==true && orderInfo.order_type == '1'}}" bindtap="cancelOrder">取消订单</view>
  190. <view class="save" wx:if="{{ handleOption.pay==true && orderInfo.dateformat}}" bindtap="payOrder">去付款 {{orderInfo.dateformat.min}}{{orderInfo.dateformat?':':''}}{{orderInfo.dateformat.sec}}</view>
  191. <view class="save" wx:if="{{ handleOption.confirm==true}}" bindtap="confirmOrder">确认收货</view>
  192. <view class="save" wx:if="{{ handleOption.comment==true}}" bindtap="postComment">发表评价</view>
  193. <view class="save" wx:if="{{ orderInfo.comment_count > 0}}" bindtap="lookComment">查看评价</view>
  194. </view>
  195. </view>