123456789101112131415161718192021222324252627 |
- <?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('total', function () use ($router){
- $router->get('getHomePageCountData','\catchAdmin\report\controller\Report@homePageCountData'); // 获取首页数量统计数据
- $router->get('getStationGrowthTrendData','\catchAdmin\report\controller\Report@stationGrowthTrendData'); // 获取设备增长趋势数据
- $router->get('getDeviceGrowthTrendData','\catchAdmin\report\controller\Report@deviceGrowthTrendData'); // 获取设备增长趋势数据
- })->middleware('auth');
- $router->group('report', function () use ($router){
- $router->get('hydraulicCount','\catchAdmin\report\controller\Report@hydraulicCount');
- $router->get('windCount','\catchAdmin\report\controller\Report@windCount');
- $router->get('alarmDeviceCount','\catchAdmin\report\controller\Report@alarmDeviceCount');
- $router->get('companyCount','\catchAdmin\report\controller\Report@companyCount');
-
-
- })->middleware('auth');
|