Commit 84a66b26 by caoyanzhi

update: 卡券记录

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