order.wxml 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!--component/order/order.wxml-->
  2. <wxs src="../../wxs/tool.wxs" module="tool"></wxs>
  3. <view class="order z-padding-32 z-radius-20 z-margin-b-24" bindtap="orderTap">
  4. <view class="order_box_top">
  5. <view class="z-flex-c" wx:if="{{info.shopInfo}}" catchtap="orderShopTap">
  6. <view class="z-font-24 z-margin-r-8">{{info.shopInfo.abbr}}</view>
  7. <image src="/static/service/more.png" class="more"></image>
  8. </view>
  9. <view class="z-flex-1"></view>
  10. <view class="text_999 z-font-28" wx:if="{{info.status === 0}}">待支付</view>
  11. <view class="text_999 z-font-28 t-red" wx:elif="{{info.is_service === 1}}">售后中</view>
  12. <view class="text_999 z-font-28 t-red" wx:elif="{{info.is_service === 2}}">已退款 ¥{{info.refund_price}}</view>
  13. <view class="text_999 z-font-28" wx:elif="{{info.to_shop === 'shop' && info.status === 2}}">待核销</view>
  14. <view class="text_999 z-font-28" wx:elif="{{info.status === 1}}">订单已提交</view>
  15. <view class="text_999 z-font-28" wx:elif="{{info.status === 2}}">订单已接单</view>
  16. <view class="text_999 z-font-28" wx:elif="{{info.status === 3}}">已出发</view>
  17. <view class="text_999 z-font-28" wx:elif="{{info.status === 4}}">已到达</view>
  18. <view class="text_999 z-font-28" wx:elif="{{info.status === 5}}">服务中</view>
  19. <view class="text_999 z-font-28" wx:elif="{{info.status === 6}}">已完成</view>
  20. <view class="text_999 z-font-28" wx:elif="{{info.status === 7}}">已评价</view>
  21. <view class="text_999 z-font-28" wx:elif="{{info.status === -1}}">已取消</view>
  22. </view>
  23. <view class="order_content z-margin-tb-32">
  24. <view class="order_content_left z-flex-1">
  25. <view class="order_content_left_top">
  26. <view class="timetext z-flex z-font-22">{{info.to_shop === 'door' ? '预约时间' : '到店核销'}}</view>
  27. <view class="z-font-w z-flex-1 hidden z-margin-l-16 z-font-28">{{info.orderDetail.name}}</view>
  28. </view>
  29. <view class="month_clock">
  30. <view class="month">
  31. {{info.to_shop === 'door' ? tool.formatTime(info.starttime, 'mm-dd') : ''}}
  32. </view>
  33. <view class="clock z-margin-l-24">
  34. {{info.to_shop === 'door' ? tool.formatTime(info.starttime, 'HH:MM') : ''}}
  35. </view>
  36. </view>
  37. <view class="text_999 z-font-24" wx:if="{{info.to_shop === 'shop' && info.shopName.trade_hour}}">{{info.shopName.trade_hour}}</view>
  38. <view class="text_999 z-font-24" wx:elif="{{info.status === 0}}">该订单还没有支付</view>
  39. <view class="text_999 z-font-24" wx:elif="{{info.status === 1}}">等待服务人员接单</view>
  40. <view class="z-flex-c" wx:elif="{{info.skillInfo}}">
  41. <image src="{{tool.cdn(info.skillInfo.image)}}" class="avatar z-margin-r-16" mode="aspectFill" lazy-load lazy-load-margin="0"></image>
  42. <view class="z-font-24">{{info.skillInfo.name}}</view>
  43. </view>
  44. </view>
  45. <image src="{{tool.cdn(info.orderDetail.image)}}" class="order_content_img z-radius-24 z-flex-0 z-margin-l-24" mode="aspectFill" lazy-load lazy-load-margin="0" />
  46. </view>
  47. <van-divider />
  48. <view class="order_bottom">
  49. <view class="money z-font-w">
  50. ¥{{info.payprice}}
  51. </view>
  52. <view class="order_bottom_right">
  53. <view class="plus z-radius-8 z-margin-l-24" data-type="4" catchtap="orderBtnTap" wx:if="{{info.status === 0}}">支付</view>
  54. <view class="refund z-radius-8 z-margin-l-24" data-type="1" catchtap="orderBtnTap" wx:if="{{info.status > 0 && info.is_service !== 2 && info.is_settle < 2}}">申请退款</view>
  55. <view class="plus z-radius-8 z-margin-l-24" data-type="2" catchtap="orderBtnTap" wx:if="{{info.status === 2 || info.status === 3 || info.status === 4 || info.status === 5}}">加项</view>
  56. <view class="difference z-radius-8 z-margin-l-24" data-type="3" catchtap="orderBtnTap" wx:if="{{info.status > 0 && info.status < 6}}">补差价</view>
  57. <view class="plus z-radius-8 z-margin-l-24" data-type="5" catchtap="orderBtnTap" wx:if="{{info.status === 6}}">去评价</view>
  58. <view class="plus z-radius-8 z-margin-l-24" data-type="6" catchtap="orderBtnTap" wx:if="{{info.status === 7}}">查看评价</view>
  59. </view>
  60. </view>
  61. </view>