route.php 563 B

123456789101112
  1. <?php
  2. Route::group('api',array(
  3. '/' => 'index/index/index',
  4. 'userAdd' => 'index/user/userAdd',
  5. 'roleList' => 'index/user/roleList',
  6. 'roleAdd' => 'index/user/roleAdd',
  7. 'roleDel' => 'index/user/roleDel',
  8. 'checkFcode' => 'index/cabinet/check_fcode',
  9. 'changeCabinetStatus' => 'index/cabinet/change_cabinet_status',
  10. 'addCabinet' => 'index/cabinet/add_cabinet',
  11. ));