route.php 2.2 KB

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