|
|
@@ -14,14 +14,6 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="userId" label="用户ID" width="100" fixed="left" />
|
|
|
<el-table-column prop="nickName" label="用户昵称" fixed="left" width="90" />
|
|
|
- <el-table-column prop="todayVideo" label="今日视频播放数" width="130" />
|
|
|
- <el-table-column prop="totalVideo" label="视频播放总数" width="110" />
|
|
|
- <el-table-column prop="totalIncome" label="用户贡献(当日/总共)" sortable width="200">
|
|
|
- <template #default="scope">
|
|
|
- {{ scope.row.todayIncome === 0 ? '0.00' : scope.row.todayIncome ?? '0.00'}} /
|
|
|
- {{ scope.row.totalIncome === 0 ? '0.00' : scope.row.totalIncome ?? '0.00' }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column prop="userStatus" label="用户状态" width="90">
|
|
|
<template #default="scope">
|
|
|
{{ getDictionaryName('user_status',Number(scope.row.userStatus)) }}
|
|
|
@@ -36,6 +28,14 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="ditchName" label="渠道来源" width="150" />
|
|
|
+ <el-table-column prop="todayVideo" label="今日视频播放数" width="130" />
|
|
|
+ <el-table-column prop="totalVideo" label="视频播放总数" width="110" />
|
|
|
+ <el-table-column prop="totalIncome" label="用户贡献(当日/总共)" sortable width="200">
|
|
|
+ <template #default="scope">
|
|
|
+ {{ scope.row.todayIncome === 0 ? '0.00' : scope.row.todayIncome ?? '0.00'}} /
|
|
|
+ {{ scope.row.totalIncome === 0 ? '0.00' : scope.row.totalIncome ?? '0.00' }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="communicationOperator" label="通信运营商" width="100" />
|
|
|
<el-table-column prop="deviceRepeatCount" label="设备重复数量" width="110" />
|
|
|
<el-table-column prop="ipRepeatCount" label="IP重复数量" width="100" />
|