Commit 000eafa5 by huaying

fix: 优惠券兑换

parent 8b1a574a
......@@ -133,6 +133,8 @@
<img v-if="scope.row.cardType === 0 && !scope.row.giftMainPic" src="../../../static/img/quan01.png" alt="">
<!-- 折扣券 -->
<img v-if="scope.row.cardType === 1 && !scope.row.giftMainPic" src="../../../static/img/quan03.png" alt="">
<!-- 商场券 -->
<img v-if="scope.row.cardType === 3 && !scope.row.giftMainPic" src="../../../static/img/quan04.png" alt>
<div class="info-name">
<p class="pro-ellipsis">
{{ scope.row.giftName }}
......@@ -144,7 +146,12 @@
</el-tooltip>
<p style="font-size:13px;color:#909399" v-if="scope.row.proReferId.indexOf(',') === -1">
<span v-if="scope.row.status === 2">已领取</span><span v-if="scope.row.status <= 1">待领取</span> / <span v-if="scope.row.useStatus === 5">已使用</span><span v-if="scope.row.useStatus === 0">待使用</span><span v-if="scope.row.useStatus === 7">已销毁</span>
<span v-if="scope.row.status === 2">已领取</span>
<span v-if="scope.row.status <= 1 && scope.row.status != -2">待领取</span>
<span v-if="scope.row.status != -2"> / </span>
<span v-if="scope.row.useStatus === 5">已使用</span>
<span v-if="scope.row.useStatus === 0">待使用</span>
<span v-if="scope.row.useStatus === 7">已销毁</span>
</p>
</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