Commit 317fe23b by Kyle_Li

会员卡券添加字段

parent ee5d8785
......@@ -96,6 +96,15 @@
</template>
</el-table-column>
<el-table-column
prop="receiveTime"
label="核销时间"
width="160px"
>
<template slot-scope="scope">
{{ scope.row.usedTime | formatTime }}
</template>
</el-table-column>
<el-table-column
prop="receiveName"
label="投放渠道"
></el-table-column>
......@@ -137,7 +146,10 @@
label="核销来源"
>
<template slot-scope="scope">
<span v-if="scope.row.checkSource === 0">订单核销</span>
<div v-if="scope.row.checkSource === 0">
<div>订单核销</div>
<div>{{ scope.row.orderNumber }}</div>
</div>
<span v-if="scope.row.checkSource === 1">手动核销</span>
<span v-if="scope.row.checkSource === -1">--</span>
</template>
......
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