Commit 3b278963b74e3f9ab8e2109712cfe6caf13b85d2
1 parent
3adebc5c
退款界面调整,处理时间,完成时间, 整单的金额显示
Showing
1 changed file
with
9 additions
and
1 deletions
pages/user/return_goods_info/return_goods_info.wxml
1 | +<wxs module="filters" src="../../../utils/filter.wxs"></wxs> | |
1 | 2 | <view class="order-mes"> |
2 | 3 | <view class="order-name"> |
3 | 4 | <view>订单编号:{{return_goods.order_sn}}</view> |
... | ... | @@ -10,9 +11,14 @@ |
10 | 11 | </view> |
11 | 12 | <view class="goods-des"> |
12 | 13 | <view class="goods-name ellipsis-1">{{item.goods_name}}</view> |
13 | - <view class="now-price co-red">退款金额 : ¥{{return_goods.back_money}}</view> | |
14 | + <view class="now-price co-red" wx:if="{{return_goods.goods_id}}">退款金额 : ¥{{return_goods.back_money}}</view> | |
14 | 15 | </view> |
15 | 16 | </view> |
17 | + | |
18 | +<view wx:if="{{return_goods.goods_id_list}}" class="now-price co-red" style="margin-left:30rpx; font-size:26rpx"> | |
19 | + 退款金额 : ¥{{return_goods.back_money}} | |
20 | +</view> | |
21 | + | |
16 | 22 | <view class="apply-mes pd-bg-fff"> |
17 | 23 | <view class="apply-item"> |
18 | 24 | <view class="apply-til">售后信息</view> |
... | ... | @@ -51,10 +57,12 @@ |
51 | 57 | </view> |
52 | 58 | <view class="item-wrap" wx:if="{{return_goods.status==2}}"> |
53 | 59 | <view class="state-title">亲爱的客户,您的服务正在处理中</view> |
60 | + <view class="state-time">{{filters.format_time(return_goods.handle_time,1)}}</view> | |
54 | 61 | <view class="state-user">操作人:卖家</view> |
55 | 62 | </view> |
56 | 63 | <view class="item-wrap" wx:if="{{return_goods.status==2}}"> |
57 | 64 | <view class="state-title">亲爱的客户,您的服务单已完成</view> |
65 | + <view class="state-time">{{filters.format_time(return_goods.ok_time,1)}}</view> | |
58 | 66 | <view class="state-user">操作人:卖家</view> |
59 | 67 | </view> |
60 | 68 | <view class="item-wrap" wx:if="{{return_goods.status==3}}"> | ... | ... |