|
...
|
...
|
@@ -179,7 +179,7 @@ class CountLogic extends BaseLogic |
|
|
|
$result =array();
|
|
|
|
if(!empty($data)){
|
|
|
|
foreach ($data as $k => $v){
|
|
|
|
if(($this->project['is_record_china_visit'] != 1) && ($v['country'] == '中国')){
|
|
|
|
if(isset($v['country']) && isset($this->project['is_record_china_visit']) && ($this->project['is_record_china_visit'] != 1) && ($v['country'] == '中国')){
|
|
|
|
continue;
|
|
|
|
}else{
|
|
|
|
$v['pv'] = (int)$v['pv'];
|
...
|
...
|
|