Commit 84a66b26 by caoyanzhi

update: 卡券记录

parent fa70fc8e
...@@ -72,6 +72,7 @@ ...@@ -72,6 +72,7 @@
{{ scope.row.sendMemberCount }} {{ scope.row.sendMemberCount }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="创建人" prop="creatorName" width="120"></el-table-column>
<el-table-column width="150" label="创建时间"> <el-table-column width="150" label="创建时间">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.createTime | formatTimeStamp }} {{ scope.row.createTime | formatTimeStamp }}
...@@ -137,7 +138,7 @@ export default { ...@@ -137,7 +138,7 @@ export default {
cardName: '', cardName: '',
options: [ options: [
{ label: '全部', value: '' }, { label: '全部', value: '' },
{ label: '已过期', value: 2 }, { label: '已删除', value: 2 },
{ label: '正常', value: 1 } { label: '正常', value: 1 }
] ]
}; };
...@@ -153,7 +154,7 @@ export default { ...@@ -153,7 +154,7 @@ export default {
val = '正常'; val = '正常';
break; break;
case 2: case 2:
val = '已过期'; val = '已删除';
break; break;
} }
return val; return val;
......
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