2024-05-06 15:34:15 +08:00
|
|
|
|
<!--pages/logistics_details/logistics_details.wxml-->
|
2024-05-08 17:32:39 +08:00
|
|
|
|
<view style="padding:48rpx 48rpx 92rpx;">
|
2024-05-10 15:18:51 +08:00
|
|
|
|
<view style="margin-bottom: 36rpx;display: flex;align-items: center;">
|
|
|
|
|
<picker range="{{expressComName}}" value="{{currentExpressComIndex}}" bindchange="pickExpressCom">
|
|
|
|
|
<view style="display: flex;align-items: center;">
|
|
|
|
|
<image src="../../icon/arrows-exchange-alt-v.svg" style="width: 40rpx; height: 40rpx;" />
|
|
|
|
|
{{expressComs[currentExpressComIndex].name}}
|
|
|
|
|
</view>
|
|
|
|
|
</picker>:{{num}}
|
2024-05-08 17:32:39 +08:00
|
|
|
|
</view>
|
2024-05-10 15:18:51 +08:00
|
|
|
|
<view wx:if="{{records.length}}">
|
|
|
|
|
<view wx:for="{{records}}" wx:key="context" class="record-item">
|
|
|
|
|
<view class="dot" />
|
|
|
|
|
<view class="line" />
|
|
|
|
|
<text class="time">{{item.time}}</text>
|
|
|
|
|
<text style="margin-top: 20rpx;">{{item.context}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view wx:else style="text-align: center; margin: 256rpx 96rpx 0;">暂无物流信息,请检查快递单号或者快递公司是否正确,可以点击左上方快递公司名称选择正确的快递公司。</view>
|
2024-05-08 17:32:39 +08:00
|
|
|
|
</view>
|