route.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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(function () use ($router) {
  13. // device路由
  14. $router->resource('device', '\catchAdmin\device\controller\Device');
  15. // station路由
  16. $router->get('station/getExportList','\catchAdmin\device\controller\Station@getExportList');
  17. $router->get('station/getdeviceListByStation','\catchAdmin\device\controller\Station@getdeviceListByStation');
  18. $router->get('station/getAllListForTrans','\catchAdmin\device\controller\Station@getAllListForTrans');
  19. $router->get('station/getMapList','\catchAdmin\device\controller\Station@getMapList');
  20. $router->get('station/getAllList','\catchAdmin\device\controller\Station@getAllList');
  21. //导入基站
  22. $router->post('station/importStation', '\catchAdmin\device\controller\Station@importStation');
  23. $router->resource('station', '\catchAdmin\device\controller\Station');
  24. // station_photo路由
  25. $router->resource('station_photo', '\catchAdmin\device\controller\StationPhoto');
  26. //获取微信用户的设备
  27. $router->post('device/getdevicebyid','\catchAdmin\device\controller\Device@getDeviceById');
  28. //微信修改用户名称
  29. $router->post('device/editname','\catchAdmin\device\controller\Device@editName');
  30. //微信用户绑定设备
  31. $router->post('device/bindingdevie','\catchAdmin\device\controller\Device@bindingDevie');
  32. //微信解除设备
  33. $router->post('device/relievedevice','\catchAdmin\device\controller\Device@relieveDevice');
  34. //导出设备
  35. $router->post('device/export_device','\catchAdmin\device\controller\Device@export_device');
  36. //导出基站
  37. $router->post('station/export_station','\catchAdmin\device\controller\Station@export_station');
  38. //导入设备
  39. $router->post('import_device', '\catchAdmin\device\controller\Device@import_device');
  40. })->middleware('auth');