route.php 1.6 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. // you should use `$router`
  12. $router->group('total', function () use ($router){
  13. $router->get('getHomePageCountData','\catchAdmin\report\controller\Report@homePageCountData'); // 获取首页数量统计数据
  14. $router->get('getStationGrowthTrendData','\catchAdmin\report\controller\Report@stationGrowthTrendData'); // 获取设备增长趋势数据
  15. $router->get('getDeviceGrowthTrendData','\catchAdmin\report\controller\Report@deviceGrowthTrendData'); // 获取设备增长趋势数据
  16. })->middleware('auth');
  17. $router->group('report', function () use ($router){
  18. $router->get('hydraulicCount','\catchAdmin\report\controller\Report@hydraulicCount');
  19. $router->get('alarmDeviceCount','\catchAdmin\report\controller\Report@alarmDeviceCount');
  20. $router->get('workCount','\catchAdmin\report\controller\Report@workCount');
  21. //维保记录
  22. $router->get('maintainCount','\catchAdmin\report\controller\Report@maintainCount');
  23. })->middleware('auth');