index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <navbar parameter='{{parameter}}'></navbar>
  2. <view class='logistics'>
  3. <view class='header acea-row row-between row-top'>
  4. <view class='pictrue'><image src='{{product.productInfo.image}}'></image></view>
  5. <view class='text acea-row row-between'>
  6. <view class='name line2'>{{product.productInfo.store_name}}</view>
  7. <view class='money'>
  8. <view>¥{{product.truePrice}}</view>
  9. <view>x{{product.cart_num}}</view>
  10. </view>
  11. </view>
  12. </view>
  13. <view class='logisticsCon'>
  14. <view class='company acea-row row-between-wrapper'>
  15. <view class='picTxt acea-row row-between-wrapper'>
  16. <view class='iconfont icon-wuliu'></view>
  17. <view class='text'>
  18. <view><text class='name line1'>物流公司:</text> {{orderInfo.delivery_name}}</view>
  19. <view class='express line1'><text class='name'>快递单号:</text> {{orderInfo.delivery_id}}</view>
  20. </view>
  21. </view>
  22. <view class='copy' bindtap='copyOrderId'>复制单号</view>
  23. </view>
  24. <view class='item' wx:for="{{expressList}}" wx:key='index'>
  25. <view class='circular {{index === 0 ? "on":""}}'></view>
  26. <view class='text {{index===0 ? "on-font on":""}}'>
  27. <view>{{item.status}}</view>
  28. <view class='data {{index===0 ? "on-font on":""}}'>{{item.time}}</view>
  29. </view>
  30. </view>
  31. </view>
  32. <recommend host_product="{{host_product}}"></recommend>
  33. </view>
  34. <authorize bind:onLoadFun="onLoadFun"></authorize>