39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
<!--packageE/others/cloudwarehouse/cloudOrderDetail/cloudOrderDetail.wxml-->
|
||
<view id="cloudOrderDetail">
|
||
<view class="box">
|
||
<view class="tops">
|
||
<view class="addr" >
|
||
<icon class="fa fa-map-marker"></icon>
|
||
<view class='p' style="flex: 1;text-align: left;padding: 0 0.625rem;">
|
||
收件人:{{info.address_info.realname}}
|
||
<br />
|
||
<view class='span'>{{info.address_info.address}}</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="recipients" wx:if="{{info.has_many_order_goods}}">
|
||
<view class="top" wx:for="{{info.has_many_order_goods}}" wx:key="index">
|
||
<view class="img">
|
||
<image src="{{item.thumb}}" ></image>
|
||
</view>
|
||
<view class="top_right">
|
||
<view class="titles">{{item.title}}</view>
|
||
<view class="specification">规格:x{{item.total}}</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="orderMum">
|
||
<view class="number">
|
||
<view class='span'>订单编号</view>
|
||
<view class='p'>{{info.order_sn}}</view>
|
||
</view>
|
||
<view class="payment">
|
||
<view class='span'>交易状态</view>
|
||
<view class='p'>{{info.status_name}}</view>
|
||
</view>
|
||
</view>
|
||
<view class="leaveText" wx:if="{{info.note}}">
|
||
{{info.note || ''}}
|
||
</view>
|
||
</view>
|
||
</view> |