123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- namespace catchAdmin\alarm\controller;
- use catcher\base\CatchRequest as Request;
- use catcher\CatchResponse;
- use catcher\base\CatchController;
- use catchAdmin\alarm\model\ControlAlarm as controlAlarmModel;
- use think\facade\Db;
- class ControlAlarm extends CatchController
- {
- protected $controlAlarmModel;
-
- public function __construct(controlAlarmModel $controlAlarmModel)
- {
- $this->controlAlarmModel = $controlAlarmModel;
- }
-
- /**
- * 列表
- * @time 2022年10月27日 15:33
- * @param Request $request
- */
- public function index(Request $request) : \think\Response
- {
- return CatchResponse::paginate($this->controlAlarmModel->getList());
- }
-
- /**
- * 保存信息
- * @time 2022年10月27日 15:33
- * @param Request $request
- */
- public function save(Request $request) : \think\Response
- {
- return CatchResponse::success($this->controlAlarmModel->storeBy($request->post()));
- }
-
- /**
- * 读取
- * @time 2022年10月27日 15:33
- * @param $id
- */
- public function read($id) : \think\Response
- {
- return CatchResponse::success($this->controlAlarmModel->findBy($id));
- }
-
- /**
- * 更新
- * @time 2022年10月27日 15:33
- * @param Request $request
- * @param $id
- */
- public function update(Request $request, $id) : \think\Response
- {
- return CatchResponse::success($this->controlAlarmModel->updateBy($id, $request->post()));
- }
-
- /**
- * 删除
- * @time 2022年10月27日 15:33
- * @param $id
- */
- public function delete($id) : \think\Response
- {
- return CatchResponse::success($this->controlAlarmModel->deleteBy($id));
- }
- /**
- * 报警点统计
- * @param Request $request
- */
- public function totalAlarmAddress(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]));
- $xAxisData=[];
- $yAxisData=[];
-
- $list=Db::table('control_alarm')
- ->field('address,count(*) as num')
- ->group('address')
- ->order('num desc')
- ->select();
- foreach($list as $val){
- $xAxisData[]=$val['address'];
- $yAxisData[]=$val['num'];
- }
- // return $rows;
- return CatchResponse::success(['xAxisData'=>$xAxisData,'yAxisData'=>$yAxisData]);
- }
- }
|