|
|
@@ -42,6 +42,11 @@
|
|
|
<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="nearlyIncome" label="前三日总收益" width="110">
|
|
|
+ <template #default="scope">{{
|
|
|
+ roundPrice(scope.row.nearlyIncome, 3)
|
|
|
+ }} </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="totalIncome" label="用户贡献(当日/总共)" sortable width="200">
|
|
|
<template #default="scope">
|
|
|
{{ roundPrice(scope.row.todayIncome === 0 ? '0.000' : scope.row.todayIncome ?? '0.000', 3) }} /
|
|
|
@@ -754,7 +759,7 @@ const getData = (data) => {
|
|
|
ditchName: item.ditchName,
|
|
|
todayVideo: item.todayVideo,
|
|
|
totalVideo: item.totalVideo,
|
|
|
- totalIncome: `${roundPrice(item.todayIncome === 0 ? '0.000' : item.todayIncome ?? '0.000', 3)} / ${roundPrice(item.totalIncome === 0 ? '0.000' : item.totalIncome ?? '0.000',3)}`,
|
|
|
+ totalIncome: `${roundPrice(item.todayIncome === 0 ? '0.000' : item.todayIncome ?? '0.000', 3)} / ${roundPrice(item.totalIncome === 0 ? '0.000' : item.totalIncome ?? '0.000', 3)}`,
|
|
|
communicationOperator: item.communicationOperator,
|
|
|
loginRecordList: item.loginRecordList?.length
|
|
|
? `${item.loginRecordList[0].deviceBrand} ${item.loginRecordList[0].deviceModel}`
|