|
@@ -134,6 +134,11 @@
|
|
|
<el-table-column label="线下销量" sortable="custom" prop="offLineSaleCnt" width="100px"/>
|
|
|
<el-table-column label="线上销量" sortable="custom" prop="onLineSaleCnt" width="100px"/>
|
|
|
<el-table-column label="用户数" sortable="custom" prop="userCnt" width="100px"/>
|
|
|
+ <el-table-column label="注册时间" prop="userCnt" width="150px">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ {{ parseTime(row.createdTime) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="认证状态" prop="certifyStatus" >
|
|
|
<template slot-scope="{ row, column }">
|
|
|
<span v-if="getValue(row.certifyStatus) == 'y'" style="color: blue;"> {{getDesc(row.certifyStatus)}}</span>
|