|
...
|
...
|
@@ -35,7 +35,7 @@ class CountController extends BaseController |
|
|
|
//TODO::30天pv,ip统计
|
|
|
|
$data['visit_data'] = $countLogic->visit_data_count();
|
|
|
|
//TODO::询盘国家统计
|
|
|
|
$data['country_data'] = json_decode($data['yesterday']['country']) ?? '';
|
|
|
|
$data['country_data'] = isset($data['yesterday']['country']) ? json_decode($data['yesterday']['country']) : '';
|
|
|
|
//TODO::来源排名
|
|
|
|
$data['referrer_count'] = $countLogic->referrer_count();
|
|
|
|
//TODO::访问国家前10
|
...
|
...
|
|