orderInfoExpress.wxml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <i-card showModal="true">
  2. <view slot="header">
  3. <view class="header">收货信息</view>
  4. </view>
  5. <view slot="content">
  6. <view class="content-wrap">
  7. <view class="item">
  8. <view class="title">收货人</view>
  9. <view class="detail">{{order.order_info.shipping_name}} {{order.order_info.shipping_tel}}</view>
  10. </view>
  11. <view class="item" wx:if="{{order.order_info.name&&showNickname}}">
  12. <view class="title">昵称</view>
  13. <view class="detail">{{order.order_info.name}}</view>
  14. </view>
  15. <view class="item" wx:if="{{order.order_info.delivery=='express'}}">
  16. <view class="title">收货地址</view>
  17. <view class="detail">{{order.shipping_province.name}}{{order.shipping_city.name}}{{order.shipping_country.name}}{{order.order_info.shipping_address}}</view>
  18. </view>
  19. <view class="item" wx:else>
  20. <view class="title">收货地址</view>
  21. <view class="detail">{{order.order_info.tuan_send_address}}</view>
  22. </view>
  23. <block wx:if="{{order.order_info.delivery=='express'}}">
  24. <view class='item' wx:if="{{order.order_info.dispatchname}}">
  25. <view class='title'>配送方式</view>
  26. <view class='detail'>快递({{order.order_info.dispatchname}})
  27. <view bindtap="goExpress" class="phone">
  28. <text>查看物流</text>
  29. </view>
  30. </view>
  31. </view>
  32. <view class='item' wx:if="{{order.order_info.shipping_no!=0}}">
  33. <view class='title'>快递单号</view>
  34. <view class='detail'>{{order.order_info.shipping_no}}</view>
  35. </view>
  36. </block>
  37. <view class='item' wx:else>
  38. <view class='title'>配送方式</view>
  39. <view class='detail'>团长配送</view>
  40. </view>
  41. <view class="item">
  42. <view class="title">团长信息</view>
  43. <view class="detail">
  44. <text>{{order.order_info.ziti_name}}</text>
  45. <view bindtap="callTelphone" class="phone" data-phone="{{order.order_info.ziti_mobile}}">
  46. <image class="icon-phone" src="../../images/phone2.png"></image>
  47. <text>联系团长</text>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view slot="footer">
  54. <view class="footer">
  55. 共{{order.goods_count}}件商品 小计:
  56. <view class="money">{{order.order_info.total}}</view>
  57. </view>
  58. </view>
  59. </i-card>