| <view class="main"> | 
|   <view class='logistics-container'> | 
|     <view class='logistics-list'>  | 
|       <view class='logistics-detail radius'> | 
|         <image class='logistics-image' mode="aspectFit" src="{{order.details[0].shopProduct.imgMobile}}"></image> | 
|         <view class='logistics-express'> | 
|           <text class='name'> | 
|                 <text wx:if="{{logisticsInfo.logisticsInfo.logisticsStatus == '1'}}">已揽件</text> | 
|                 <text wx:if="{{logisticsInfo.logisticsInfo.logisticsStatus == '2'}}">运输中</text> | 
|                 <text wx:if="{{logisticsInfo.logisticsInfo.logisticsStatus == '3'}}">已签收</text> | 
|                 <text wx:if="{{logisticsInfo.logisticsInfo.logisticsStatus == '4'}}">待取件</text> | 
|                 <text wx:else>{{info==null?'':info}}</text> | 
|           </text> | 
|           <view class='express'> | 
|             <view class='grey'>{{logisticsInfo.logisticsInfo.logisticsCompany}}</view> | 
|             <view class='grey'>{{logisticsInfo.logisticsInfo.waybillNo}}</view> | 
|           </view> | 
|         </view> | 
|         <view> | 
|           <view class='contact_list'> | 
|             <button open-type='contact'> | 
|               <view class="iconfont iconkefu"></view> | 
|               客服 | 
|             </button> | 
|           </view> | 
|      | 
|         </view> | 
|       </view> | 
|       <view class='logistics-content'> | 
|         <view class='logistics-info'> | 
|           <view> | 
|             <view class='harvest'>收</view> | 
|             <text decode="{{true}}" class='address-info'>【收货地址】 {{order.deliveryInfo.receiveAddress}}</text> | 
|           </view> | 
|         </view> | 
|         <view wx:for="{{logisticsList}}"> | 
|           <view class='logistics-info' wx:if="{{item.state != 0}}"> | 
|             <view> | 
|               <text class='time' decode="{{true}}">{{item.logisticsTime}}</text> | 
|               <view class='logistics-close'> | 
|                 <view class='online-top-close'></view> | 
|                  <view class='dot-close'></view> | 
|                 <!-- <view class='iconfont icon-fahuo'></view> --> | 
|                 <view class='online-bottom'></view> | 
|               </view>  | 
|               <view class='info'> | 
|                 <text wx:if="{{item.state == 1}}">已揽件</text> | 
|                 <text wx:if="{{item.state == 2}}">运输中</text> | 
|                 <text wx:if="{{item.state == 3}}">已签收</text> | 
|                 <text wx:if="{{item.state == 4}}">待取件</text> | 
|                 <text>{{item.describe}}</text> | 
|               </view> | 
|             </view> | 
|           </view> | 
|            <view class='logistics-info' wx:if="{{item.state == 0}}"> | 
|               <view> | 
|                 <text class='time'>{{item.logisticsTime}}</text> | 
|                 <view class='logistics-close'> | 
|                     <view class='online-top-close'></view> | 
|                     <view class='dot-close'></view> | 
|                     <view class='online-bottom'></view> | 
|                   </view> | 
|                 <view class='info'>              | 
|                   <text>{{item.describe}}</text> | 
|                 </view> | 
|               </view> | 
|             </view> | 
|   | 
|              | 
|         </view> | 
|         <view class='logistics-info' > | 
|               <view> | 
|                 <text class='time'>{{order.paymentTime == null?'':order.paymentTime}}</text> | 
|                 <view class='logistics-close'> | 
|                     <view class='online-top-close'></view> | 
|                     <!-- <view class='iconfont icon-dingdan border'></view> --> | 
|                      <view class='dot-close'></view> | 
|                     <view class='online-bottom'></view> | 
|                   </view> | 
|                 <view class='info'>        | 
|                   <text>已下单</text>           | 
|                   <text>您的订单待配货</text> | 
|                 </view> | 
|               </view> | 
|             </view> | 
|         | 
|       </view> | 
|     </view> | 
|   </view> | 
| </view> | 
| <view bindtap="goBack"  hidden="{{inform}}" class="goIndex">回到首页</view> |