express.wxml
1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<block wx:if="{{hasOrder}}">
<view class='header'>
<view class='rigthView'>
<image class='image' src='{{logo}}'></image>
</view>
<view class='leftView'>
<text class="text">物流公司: {{orderID}}</text>
<view class='textTelView'>
<text class="text">快递单号: {{logisticsCompany}}</text>
<view class='textTelButton'>
<text class="buttontext" bindtap="copyExpressNo">复制</text>
</view>
</view>
</view>
</view>
<view class="space">
</view>
<view class="detailTitleView">
<text class="detailTitle">物流详情</text>
</view>
<view class="line">
</view>
<view style="width: 100%;height: {{listH}}rpx;">
<scroll-view scroll-y style="height: 100%;">
<block wx:for="{{list}}" wx:key="unique">
<view class="cell">
<block wx:if="{{index == 0}}">
<view class="cellLeft">
<view class="HLine">
<image class="dot" src="../../../../static/images/exp-dot1@2x.png"></image>
</view>
</view>
<view class="cellRight" style='color: black'>
<text class="text1">{{item.accept_address}}</text>
<text class="text2">{{item.acceptTime}}</text>
</view>
</block>
<block wx:else>
<view class="cellLeft">
<view class="HLine">
<image class="dot" src="../../../../static/images/exp-dot1@2x.png"></image>
</view>
</view>
<view class="cellRight" style='color: #e0e0e0'>
<text class="text1">{{item.accept_address}}</text>
<text class="text2">{{item.acceptTime}}</text>
</view>
</block>
</view>
<view class="cellLine">
</view>
</block>
</scroll-view>
</view>
</block>