refund-after.wxml
1.7 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
<!--pages/all-order/all-order.wxml-->
<!-- 订单 -->
<view class="container">
<view class="orderItem" wx:for="{{tabList}}" catchtap="orderDetail" data-orderid="{{item.orderId}}"
wx:if="{{item.status==6}}">
<!-- 订单号 -->
<view class="top">
<view class="orderNumber">订单号:{{item.orderId}}</view>
<view class="status">退款</view>
</view>
<!-- 商品详情 -->
<view class="bottom">
<view class="productPic">
<image src="{{item.listGoodsVoList[0].goodsPic}}" mode="aspectFill"></image>
</view>
<view class="productDetail">
<view class="name">{{item.listGoodsVoList[0].goodsName}}</view>
<view class="describe">{{item.listGoodsVoList[0].goodsAttributes}}</view>
<view class="price">
<view> ¥{{item.listGoodsVoList[0].goodsPrice}}</view>
<view class="amount">x{{item.listGoodsVoList[0].goodsQuantity}}</view>
</view>
</view>
</view>
<!-- 合计 -->
<view class="totalMoneyBox">
合计:
<view class="totalMoney" data-type="{{payAmountType}}">
<text style="margin-right:-6rpx">¥</text>
<text>{{item.payAmount}}</text>
</view>
<view>
<text> (含运费</text>
<text style="margin-right: -8rpx;"> ¥</text>
<text>{{item.freightAmount}})</text></view>
</view>
<view class="btnBox">
<view class="third btnPublic">查看详情</view>
</view>
</view>
</view>
<view class="noData" wx:if="{{tabList.length==0}}">
<view class="noDataPic">
<image src="/images/message@2x.png"></image>
</view>
<view class="noDataBottom">还没有退款的商品~</view>
</view>
<view class="bottomHint" wx:if="{{bottomHint}}">
我是有底线的~
</view>