|
...
|
...
|
@@ -65,8 +65,8 @@ class CountLogic extends BaseLogic |
|
|
|
* @time :2023/5/24 13:33
|
|
|
|
*/
|
|
|
|
public function total_count($inquiry_num = ''){
|
|
|
|
$pv = (new VisitItem())->where(['domain'=>$this->user['domain']])->count();
|
|
|
|
$ip = (new Visit())->where(['domain'=>$this->user['domain']])->count();
|
|
|
|
$pv = (new VisitItem())->count();
|
|
|
|
$ip = (new Visit())->count();
|
|
|
|
$data = [
|
|
|
|
'total_pv'=>$pv,
|
|
|
|
'total_ip'=>$ip,
|
...
|
...
|
|