|
@@ -7,6 +7,7 @@ use catcher\CatchResponse;
|
|
|
use catcher\base\CatchController;
|
|
|
use catchAdmin\report\model\Report as ReportModel;
|
|
|
use think\facade\Env;
|
|
|
+use think\facade\Db;
|
|
|
class Report extends CatchController
|
|
|
{
|
|
|
|
|
@@ -68,12 +69,13 @@ class Report extends CatchController
|
|
|
$xAxisData=[];
|
|
|
$yAxisData=[];
|
|
|
for($i=$start_time;$i<$end_time+24*3600;$i+=24*3600){
|
|
|
- $time1=date('Y-m-d 00:00:00',$i);
|
|
|
- $time2=date('Y-m-d 23:59:59',$i);
|
|
|
+ $time1=date('Y-m-d',$i);
|
|
|
+ $time2=date('Y-m-d',$i);
|
|
|
$xAxisData[]=date('Y-m-d',$i);
|
|
|
- $cond['RF_DATE']=['timeRange',$time1,$time2];
|
|
|
+ // $cond['RF_DATE']=['timeRange',$time1,$time2];
|
|
|
// $count=queryOracleCount('DSSC2.W_DW_RF_RECORD',$cond);
|
|
|
- $count=mt_rand(0,99999);
|
|
|
+ // $count=mt_rand(0,99999);
|
|
|
+ $count=Db::table('station_passing')->where('date','between',[$time1,$time2])->sum('num');
|
|
|
$yAxisData[]=$count;
|
|
|
|
|
|
}
|
|
@@ -89,15 +91,26 @@ class Report extends CatchController
|
|
|
public function areaDeviceCollect(Request $request){
|
|
|
|
|
|
$params=$request->param();
|
|
|
- $start_time=date('Y-m-d 00:00:00',strtotime($params['timeRange'][0]));
|
|
|
- $end_time=date('Y-m-d 00:00:00',strtotime($params['timeRange'][1]));
|
|
|
-
|
|
|
+ $start_time=date('Y-m-d',strtotime($params['timeRange'][0]));
|
|
|
+ $end_time=date('Y-m-d',strtotime($params['timeRange'][1]));
|
|
|
+ $xAxisData=[];
|
|
|
+ $yAxisData=[];
|
|
|
+ $list=Db::table('station_passing')
|
|
|
+ ->where('date','between',[$start_time,$end_time])
|
|
|
+ ->field('address,sum(num) as count')
|
|
|
+ ->group('address')
|
|
|
+ ->order('count desc')
|
|
|
+ ->select()->toArray();
|
|
|
+ foreach($list as $val){
|
|
|
+ $xAxisData[]=$val['address'];
|
|
|
+ $yAxisData[]=$val['count'];
|
|
|
+ }
|
|
|
|
|
|
- $host= Env::get('oracle.hostname', '127.0.0.1');
|
|
|
- $port= Env::get('oracle.hostport', '1521');
|
|
|
- $instance_name= Env::get('oracle.instance', 'ORCL');
|
|
|
- $username= Env::get('oracle.username', 'root');
|
|
|
- $password= Env::get('oracle.password', 'root');
|
|
|
+ // $host= Env::get('oracle.hostname', '127.0.0.1');
|
|
|
+ // $port= Env::get('oracle.hostport', '1521');
|
|
|
+ // $instance_name= Env::get('oracle.instance', 'ORCL');
|
|
|
+ // $username= Env::get('oracle.username', 'root');
|
|
|
+ // $password= Env::get('oracle.password', 'root');
|
|
|
|
|
|
// $conn = oci_connect('dssc3', 'dssc3', '61.175.203.188:6521/DSSC','AL32UTF8');
|
|
|
|
|
@@ -116,16 +129,12 @@ class Report extends CatchController
|
|
|
// $rows[]=$row;
|
|
|
// }
|
|
|
// oci_free_statement($stid);
|
|
|
- $xAxisData=[];
|
|
|
- $yAxisData=[];
|
|
|
+
|
|
|
// foreach($rows as $val){
|
|
|
// $xAxisData[]=$val['DEVICE_NAME'];
|
|
|
// $yAxisData[]=$val['NUM'];
|
|
|
// }
|
|
|
- for($i=0;$i<800;$i++){
|
|
|
- $xAxisData[]='测试基站'.$i;
|
|
|
- $yAxisData[]=mt_rand(0,99999);
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
// return $rows;
|
|
|
return CatchResponse::success(['xAxisData'=>$xAxisData,'yAxisData'=>$yAxisData]);
|