|
@@ -45,7 +45,7 @@ class PopularizService
|
45
|
45
|
|
46
|
46
|
#统计回收信息
|
47
|
47
|
$pids = [];
|
48
|
|
- $pidVals = $list->pluck('pid')->all();
|
|
48
|
+ $pidVals = $list->pluck('pids')->all();
|
49
|
49
|
foreach ($pidVals as $pidVal) {
|
50
|
50
|
if (empty($pidVal)) continue;
|
51
|
51
|
|
|
@@ -109,7 +109,7 @@ class PopularizService
|
109
|
109
|
$datum->send_total = isset($sendStatInfo->send_total) ? $sendStatInfo->send_total : 0;
|
110
|
110
|
unset($datum->admin_id);
|
111
|
111
|
|
112
|
|
- $datumPids = json_decode($datum->pid, true);
|
|
112
|
+ $datumPids = json_decode($datum->pids, true);
|
113
|
113
|
#统计 总播放人数(:总uv) 充值人数 充值次数(今日) 充值金额(今日) 付费率 点击率
|
114
|
114
|
if($datumPids){
|
115
|
115
|
$datum->payAvg = $datum->payUv>0 ? round($datum->payPv/$datum->payUv, 2) : null;
|
|
@@ -235,7 +235,7 @@ class PopularizService
|
235
|
235
|
|
236
|
236
|
#统计回收信息
|
237
|
237
|
$pids = [];
|
238
|
|
- $pidVals = $list->pluck('pid')->all();
|
|
238
|
+ $pidVals = $list->pluck('pids')->all();
|
239
|
239
|
foreach ($pidVals as $pidVal) {
|
240
|
240
|
if (empty($pidVal)) continue;
|
241
|
241
|
|
|
@@ -295,7 +295,7 @@ class PopularizService
|
295
|
295
|
|
296
|
296
|
unset($datum->admin_id);
|
297
|
297
|
|
298
|
|
- $datumPids = json_decode($datum->pid, true);
|
|
298
|
+ $datumPids = json_decode($datum->pids, true);
|
299
|
299
|
#统计 总播放人数(:总uv) 充值人数 充值次数(今日) 充值金额(今日) 付费率 点击率
|
300
|
300
|
if($datumPids){
|
301
|
301
|
$datum->payAvg = $datum->payUv>0 ? round($datum->payPv/$datum->payUv, 2) : null;
|