route.php 2.0 KB

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