53 lines
2.5 KiB
Plaintext
53 lines
2.5 KiB
Plaintext
<!--packageA/member/order/orderLogisticsDetails/orderLogisticsDetails.wxml-->
|
|
|
|
<view class="map" wx:if="{{details.is_another == 1 && details.another_order.isset_rider!=0 && details.another_order.sf_status != 17}}">
|
|
<map markers="{{markers}}" circles="{{circles}}" longitude="{{details.another_order.rider_lng}}" latitude="{{details.another_order.rider_lat}}"></map>
|
|
</view>
|
|
|
|
<view class="container" wx:if="{{details.is_another==1}}">
|
|
<view class="express_info">
|
|
<view class="express_num">物流单号:{{details.another_order.another_order_sn}} <text bindtap="setClipboardData">复制</text></view>
|
|
<view class="clerk" wx:if="{{details.another_order.isset_rider!=0 && details.another_order.sf_status != 17}}">
|
|
<view class="face">
|
|
<image src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fup.enterdesk.com%2Fedpic%2F55%2F34%2F61%2F553461a1d8bb07b1026a7eeff17319e0.jpg&refer=http%3A%2F%2Fup.enterdesk.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1644136224&t=09bd897f0fc3a5cbe0352bde9e9b4500"></image>
|
|
</view>
|
|
<view class="clerk-info">
|
|
<view class="clerk-status">
|
|
配送员正在送货
|
|
</view>
|
|
<view class="clerk-distance" wx:if="{{false}}">
|
|
距您43.9m
|
|
</view>
|
|
</view>
|
|
<view class="call-icon" wx:if="{{details.another_order.rider_phone}}" bindtap="makePhoneCall">
|
|
<i class="iconfont icon-hujiaokefu"></i>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="details">
|
|
<block wx:for="{{details.another_order.callback_data}}">
|
|
<view class="details-item {{index==0 ? 'active' : ''}}" wx:key="{{index}}">
|
|
<view class="icon"></view>
|
|
<view class="desc_text">{{item.content}}</view>
|
|
<view class="time">{{item.create_time}}</view>
|
|
</view>
|
|
<view class="hr" wx:if="{{details.another_order.callback_data.length != (index+1)}}" wx:key="{{index}}"></view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="no-express" wx:if="{{details.is_another==0}}">
|
|
<view class="face">
|
|
<image src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fup.enterdesk.com%2Fedpic%2F55%2F34%2F61%2F553461a1d8bb07b1026a7eeff17319e0.jpg&refer=http%3A%2F%2Fup.enterdesk.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1644136224&t=09bd897f0fc3a5cbe0352bde9e9b4500" ></image>
|
|
</view>
|
|
<view class="clerk-info">
|
|
<view class="clerk-status">
|
|
商家配送
|
|
</view>
|
|
<view class="clerk-distance">
|
|
暂无物流信息
|
|
</view>
|
|
</view>
|
|
</view> |