12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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(function () use ($router) {
- // device路由
- $router->resource('device', '\catchAdmin\device\controller\Device');
- // station路由
- $router->get('station/getdeviceListByStation','\catchAdmin\device\controller\Station@getdeviceListByStation');
- //导入基站
- $router->post('station/importStation', '\catchAdmin\device\controller\Station@importStation');
- $router->resource('station', '\catchAdmin\device\controller\Station');
- // station_photo路由
- $router->resource('station_photo', '\catchAdmin\device\controller\StationPhoto');
- //获取微信用户的设备
- $router->post('device/getdevicebyid','\catchAdmin\device\controller\Device@getDeviceById');
- //微信修改用户名称
- $router->post('device/editname','\catchAdmin\device\controller\Device@editName');
- //微信用户绑定设备
- $router->post('device/bindingdevie','\catchAdmin\device\controller\Device@bindingDevie');
- //微信解除设备
- $router->post('device/relievedevice','\catchAdmin\device\controller\Device@relieveDevice');
-
- //导出设备
- $router->post('device/export_device','\catchAdmin\device\controller\Device@export_device');
- //导出基站
- $router->post('station/export_station','\catchAdmin\device\controller\Station@export_station');
- //导入设备
- $router->post('import_device', '\catchAdmin\device\controller\Device@import_device');
-
-
- })->middleware('auth');
|