Commit 2a3acee3 authored by 肖健's avatar 肖健

支付为0的,不能申请退款

parent 770ddaab
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<span>{{item.amount/100}}</span> <span>{{item.amount/100}}</span>
</div> </div>
<div class="order__btn" @click.stop="pull(item.id)"> <div class="order__btn" @click.stop="pull(item.id)">
<span v-if="item.aftersaleStatus==0" @click.stop="pull(item.id)">申请退款</span> <span v-if="item.aftersaleStatus==0 && item.currentPrice > 0" @click.stop="pull(item.id)">申请退款</span>
<span class="btn__two" @click="orderDetail(item.id)">查看详情</span> <span class="btn__two" @click="orderDetail(item.id)">查看详情</span>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment