1234567891011121314151617181920212223242526272829303132 |
- <?php
- // +----------------------------------------------------------------------
- // | CatchAdmin [Just Like ~ ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
- // +----------------------------------------------------------------------
- // | Author: JaguarJack [ njphper@gmail.com ]
- // +----------------------------------------------------------------------
- // you should use `$router`
- $router->group(function () use ($router){
-
- $router->post('AlarmRecords/handleAlarm', '\catchAdmin\alarm\controller\AlarmRecords@handleAlarm');
- // alarmRecords路由
- $router->resource('AlarmRecords', '\catchAdmin\alarm\controller\AlarmRecords');
- // alarmReport路由
- $router->resource('AlarmReport', '\catchAdmin\alarm\controller\AlarmReport');
- //根据微信用户获取该设备告警
- $router->post('AlarmRecords/getAlarmRecordsbyId','\catchAdmin\alarm\controller\AlarmRecords@getAlarmRecordsbyId');
- //微信获取告警详情
- $router->post('AlarmRecords/getAlarmDetail','\catchAdmin\alarm\controller\AlarmRecords@getAlarmDetail');
- //解除警报
-
-
- })->middleware('auth');
- $router->group('alarmReport', function () use ($router){
- $router->get('getDetail/:id', '\catchAdmin\alarm\controller\AlarmReport@detail');
- $router->get('totalGrowth', '\catchAdmin\alarm\controller\AlarmReport@totalGrowth');
- })->middleware('auth');
|