group(function () use ($router) { // device路由 $router->resource('device', '\catchAdmin\device\controller\Device'); // station路由 $router->get('station/getExportList','\catchAdmin\device\controller\Station@getExportList'); $router->get('station/getdeviceListByStation','\catchAdmin\device\controller\Station@getdeviceListByStation'); $router->get('station/getAllListForTrans','\catchAdmin\device\controller\Station@getAllListForTrans'); $router->get('station/getMapList','\catchAdmin\device\controller\Station@getMapList'); $router->get('station/getAllList','\catchAdmin\device\controller\Station@getAllList'); //导入基站 $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');