Commit fbeff4f8 by shaojiawen

bug:卡券状态

parent 93923dab
......@@ -60,7 +60,8 @@
<el-col :span="3">
<!-- 1:已生效,2:已删除,3:已过期 -->
<span v-if="item.welfareStatus == 1" class="state-point state-point-success">已生效</span>
<span v-else class="state-point state-point-success">{{ item.welfareStatus == 2 ? '已删除' : '已过期' }}</span>
<span v-else-if="item.welfareStatus == 2" class="state-point state-point-error">已删除</span>
<span v-else class="state-point state-point-default">已过期</span>
</el-col>
<el-col :span="3">
<el-button @click="delCard(item)" type="text">删除</el-button>
......
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