logistics.wxml 1.3 KB

12345678910111213141516171819202122232425262728
  1. <!--pages/order/logistics/logistics.wxml-->
  2. <!-- <web-view wx:if="{{logistics.success}}" src="{{traceH5}}"></web-view> -->
  3. <import src="logistics.skeleton.wxml"/>
  4. <template is="skeleton" wx:if="{{loading}}" />
  5. <view class="logistics">
  6. <view class="logisticsName">
  7. <view class="name">{{options.name}}</view>
  8. <view class="dvyFlowId iconfont" bind:tap="copyText">物流单号:{{options.dvyFlowId}}</view>
  9. </view>
  10. <view class="checkStep">
  11. <view wx:if="{{!logistics ||!logistics.logisticsNodeVoList ||logistics.logisticsNodeVoList.length == 0 }}" style="text-align:center;margin:60rpx 0;font-size: 30rpx;color: #000000;font-weight: 500;">
  12. 暂无物流信息
  13. </view>
  14. <view class="stepItem" wx:for="{{logistics.logisticsNodeVoList}}">
  15. <view class="left">
  16. <view class="iconfont {{index == 0 ? 'icon-yifahuo' : 'icon-yifahuo'}}" style="color:{{index == 0 ? '#070606' : '#D9D9D9'}}"></view>
  17. <view class="dashed"></view>
  18. </view>
  19. <view class="right">
  20. <view class="checkName">{{item.status}}</view>
  21. <view class="checkDate">{{item.desc}}</view>
  22. <view class="checkDate">{{item.time}}</view>
  23. <!-- <view class="checkDate">{{check.node1Reason}}</view> -->
  24. </view>
  25. </view>
  26. </view>
  27. </view>