fix:修复【C端】【订单】充值失败订单,展示退款状态。

This commit is contained in:
wangsongsole 2022-10-14 10:49:05 +08:00
parent 24ab4eb65a
commit 7820f932bb
1 changed files with 5 additions and 3 deletions

View File

@ -48,11 +48,13 @@
</div>
<div class="bottom">
<p class="money">实付金额:¥<span>{{item.pay_amount}}</span></p>
<p class="button" @click="immediatelyPay(item)" v-show="item.status===6">立即支付</p>
<p class="button" @click="immediatelyPay(item)" v-show="item.status==6">立即支付</p>
<!-- 立减金待领取 -->
<p class="button" @click="receiveFn(item)" v-show="item.status===0&&item.type===2">去兑换</p>
<p class="button" @click="receiveFn(item)" v-show="item.status==0&&item.type==2">去兑换</p>
<!-- 立减金领取过期 -->
<p class="button filter" v-show="item.status===5&&item.type===2">去兑换</p>
<p class="button filter" v-show="item.status==5&&item.type==2">去兑换</p>
<p class="pay_status" v-if="[2,3].includes(item.pay_type)&&item.status==3&&item.type==1">
{{item.pay_type==2?'已支付':'已退款'}}</p>
</div>
</div>
<!-- 空状态 -->