Commit 7463a001 by luojie

update: 卡券有效期

parent 231d1bd7
......@@ -42,6 +42,7 @@
<template slot-scope="scope">
<div v-if="scope.row.cardEffectiveMode == 0">固定日期:{{ getTime2(scope.row.beginDate) + '至' + getTime2(scope.row.endDate) }}</div>
<div v-if="scope.row.cardEffectiveMode == 1">领取后{{ (scope.row.startDay === 0 ? '当' : scope.row.startDay) + '天,有效天数' + scope.row.limitDay }}</div>
<div v-if="scope.row.cardEffectiveMode == 2">投放后当月</div>
</template>
</el-table-column>
<el-table-column label="领取限制">
......
......@@ -333,6 +333,7 @@
<template slot-scope="scope">
<div v-if="scope.row.cardEffectiveMode == 0">固定日期:{{ scope.row.beginDate + '至' + scope.row.endDate }}</div>
<div v-if="scope.row.cardEffectiveMode == 1">领取后{{ (scope.row.startDay === 0 ? '当' : scope.row.startDay) + '天,有效天数' + scope.row.limitDay }}</div>
<div v-if="scope.row.cardEffectiveMode == 2">投放后当月</div>
</template>
</el-table-column>
<el-table-column label="领取限制">
......
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