35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
<!--pages/expresswx/expresswx.wxml-->
|
|
<view class="top">
|
|
<!-- <view class="top_state">
|
|
<text>物流状态:</text>
|
|
<text style="font-size:28rpx;color:#d9ae59">配送中</text>
|
|
</view> -->
|
|
<view class="top_state">
|
|
物流公司:<text>{{expressData.logisticsName}}</text>
|
|
</view>
|
|
<view class="top_state display_A_C" style="margin-top:20rpx;">
|
|
物流单号:<text>{{expressData.logisticsNum}}</text>
|
|
<text class="sing" catchtap="num" data-num="{{expressData.logisticsNum}}" style="margin-left:30rpx;padding:0 10rpx;">复制单号</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view>
|
|
<view class="erp">
|
|
<view>
|
|
<i-steps current="{{current}}" direction="vertical">
|
|
<!-- 遍历 -->
|
|
<block wx:for="{{expresslist}}" wx:for-item="lit" wx:key="index">
|
|
<i-step>
|
|
<view slot="date" style="position:relative;top:0rpx"></view>
|
|
<view slot="title"></view>
|
|
<!-- 内容 -->
|
|
<view slot="content" class="{{index==current-1?'limer':'topermi'}} {{index==3?'':'yearbord'}}">
|
|
<view>{{lit.content}} </view>
|
|
<view>{{lit.time}}</view>
|
|
</view>
|
|
</i-step>
|
|
</block>
|
|
</i-steps>
|
|
</view>
|
|
</view>
|
|
</view> |