index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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">
  16. <view class="title">提货地点</view>
  17. <view class="detail">{{order.order_info.shipping_address}}</view>
  18. </view>
  19. <view class="item">
  20. <view class="title">配送方式</view>
  21. <view class="detail">{{order.order_info.delivery_name}}</view>
  22. </view>
  23. <view class="item">
  24. <view class="title">团长信息</view>
  25. <view class="detail">
  26. <text>{{order.order_info.ziti_name}}</text>
  27. <view bindtap="callTelphone" class="phone" data-phone="{{order.order_info.ziti_mobile}}">
  28. <image class="icon-phone" src="../../images/phone2.png"></image>
  29. <text>联系团长</text>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view slot="footer">
  36. <view class="footer">
  37. 共{{order.goods_count}}件商品 小计:
  38. <view class="money">
  39. ¥{{order.order_info.total}}
  40. </view>
  41. </view>
  42. </view>
  43. </i-card>