index.wxml 1.6 KB

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