You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.1 KiB
54 lines
2.1 KiB
<!--pages/aftersales/aftersales.wxml-->
|
|
<view class="container">
|
|
<view class="order_goods">
|
|
<view class="order_two" wx:for="{{order}}" wx:key="index">
|
|
<image src="{{item.image}}" class="shopImg" />
|
|
<view class="order_two_a" bindtap="_goods(item.p_id,item.recycle,item.pluginId)">
|
|
<view class="order_p_name">
|
|
{{ item.p_name }}
|
|
</view>
|
|
<view class="price_num">
|
|
<view class="price">
|
|
<view class="price_symbol">¥{{item.p_price}}</view>
|
|
</view>
|
|
<view class="color_two">x{{ item.num }}</view>
|
|
</view>
|
|
<view class="color_one">{{ item.size }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view>
|
|
<view class="return_pay" wx:if="{{refund_only_status && orderType!='MS' && orderType!='FX' && orderType!=='IN'}}" data-type="2" bindtap="navToApply">
|
|
<view class="return_right">
|
|
<view class="status">
|
|
<image class="return_right_img" src="/images/tuikuan.png" />
|
|
<view>仅退款</view>
|
|
</view>
|
|
<text>未收到货,或与客服协商同意仅退款</text>
|
|
</view>
|
|
<image class="arrow" src="/images/x_right.png" />
|
|
</view>
|
|
<view class="return_pay" wx:if="{{return_refund_status && orderType!='MS' && orderType!='PM' && orderType!='FX' && orderType!=='IN'}}" data-type="1" bindtap="navToApply">
|
|
<view class="return_right">
|
|
<view class="status">
|
|
<image class="return_right_img" src="/images/tuihuo.png" />
|
|
<view>退货退款</view>
|
|
</view>
|
|
<text>已收到货,需要退还已收到的货物</text>
|
|
</view>
|
|
<image class="arrow" src="/images/x_right.png" />
|
|
</view>
|
|
<!-- 换货 -->
|
|
<view class="return_pay" wx:if="{{exchange_goods_status}}" data-type="3" bindtap="navToApply">
|
|
<view class="return_right">
|
|
<view class="status">
|
|
<image class="return_right_img" src="/images/huanhuo.png" />
|
|
<view>换货</view>
|
|
</view>
|
|
<text>确认收货,需要更换已收到的货物</text>
|
|
</view>
|
|
<image class="arrow" src="/images/x_right.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|