88 lines
3.4 KiB
Plaintext
88 lines
3.4 KiB
Plaintext
<!--pages/my/after_sales/after_sales.wxml-->
|
|
<view class="top">未及时处理可直接联系商家<text>{{phone}}</text>~</view>
|
|
<view class="jl">
|
|
<view class="title">申请记录</view>
|
|
<view class="jlcont display_J_S">
|
|
<view class="cont-1"></view>
|
|
<view class="cont-2">申请时间</view>
|
|
<view class="cont-3">{{goods.orderRefundTime}}</view>
|
|
</view>
|
|
<view class="jlcont display_J_S">
|
|
<view class="cont-1"></view>
|
|
<view class="cont-2">{{goods.orderRefundType==1?'换货':'退货'}}说明</view>
|
|
<view class="cont-3">{{goods.orderRefund}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 申请通过或失败 -->
|
|
<view class="jl" style="margin-top:70rpx;" wx:if='{{goods.afterSalesStatus==63||goods.afterSalesStatus==66}}'>
|
|
<view class="title">申请结果</view>
|
|
<view class="jieguo_cont">{{goods.orderRefundRemarke}}</view>
|
|
</view>
|
|
|
|
<!-- 退货发货时 -->
|
|
<view class="goods" wx:if="{{goods.orderRefundNumber}}">
|
|
<view class="cont display_J_B" wx:for='{{goods.goodsList}}' wx:key='index'>
|
|
<view class="cont-l">
|
|
<image src="{{item.goodsPhoto}}"></image>
|
|
</view>
|
|
<view class="cont-m">
|
|
<view class="name GStitleOne">{{item.goodsName}}</view>
|
|
<view class="specs" wx:if="{{goods.orderPayWay!=3}}">规格:{{item.wisdGoodsSpec.specName}}</view>
|
|
<view class="price" wx:if="{{goods.orderPayWay!=3}}">
|
|
{{goods.orderPayWay!=2?'¥':''}}{{item.wisdGoodsSpec.specBulyPrice==null?item.wisdGoodsSpec.specPrice:item.wisdGoodsSpec.specBulyPrice}}{{goods.orderPayWay!=2?'':'积分'}}
|
|
</view>
|
|
<view class="price" wx:if="{{goods.orderPayWay==3}}">¥0</view>
|
|
</view>
|
|
<view class="cont-r">x{{item.goodsNum}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="aArice display_J_S" wx:if="{{goods.orderRefundNumber}}">
|
|
<view class="aArice-l">{{goods.orderRefundType==2?'退货':'换货'}}说明:</view>
|
|
<view>{{goods.orderRefundInstructions}}</view>
|
|
</view>
|
|
|
|
<view class="aArice display_J_S" wx:if="{{goods.orderRefundNumber}}">
|
|
<view class="aArice-l">物流单号:</view>
|
|
<view>{{goods.orderRefundNumber}}</view>
|
|
</view>
|
|
|
|
<view class="up" wx:if="{{goods.orderRefundNumber}}">
|
|
<view class='title'>客户凭证</view>
|
|
<view class='photo'>
|
|
<view class='photo_cont' wx:for="{{goods.orderRefundImage}}" wx:key="index">
|
|
<image src='{{item}}'></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 退货发货时 -->
|
|
|
|
|
|
<!-- 申请驳回 -->
|
|
<view class="dengdai" wx:if='{{goods.afterSalesStatus==66}}'>
|
|
<view class="display_J_C"><image src="/icon/sq_2.png"></image></view>
|
|
<view style=" margin: 35rpx auto 0;color: #e02e2e;">您的申请被驳回~</view>
|
|
</view>
|
|
|
|
<!-- 申请通过 -->
|
|
<view class="dengdai" wx:if='{{goods.afterSalesStatus==63}}'>
|
|
<view class="display_J_C"><image src="/icon/sq_3.png"></image></view>
|
|
<view style=" margin: 35rpx auto 0;color: #3fb265;">您的申请已通过~</view>
|
|
</view>
|
|
<!-- 申请通过 -->
|
|
<view class="btn" wx:if='{{goods.afterSalesStatus==63}}' catchtap="next">下一步</view>
|
|
|
|
<!-- 申请中 -->
|
|
<view class="dengdai" wx:if='{{goods.afterSalesStatus==61||goods.afterSalesStatus==62}}'>
|
|
<view class="display_J_C"><image src="/icon/sq_1.png"></image></view>
|
|
<view style=" margin: 35rpx auto 0;">等待商家审核~</view>
|
|
</view>
|
|
<!-- 申请中 -->
|
|
<view class="btn-1" wx:if='{{goods.afterSalesStatus==61||goods.afterSalesStatus==62}}'>下一步</view>
|
|
|
|
<view class="height100"></view>
|
|
<view class="height100"></view>
|
|
|
|
|