route.php 895 B

12345678910111213141516171819
  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. 'test' => 'index/cabinet/test',
  9. 'checkFcode' => 'index/cabinet/check_fcode',
  10. 'changeCabinetStatus' => 'index/cabinet/change_cabinet_status',
  11. 'addCabinet' => 'index/cabinet/add_cabinet',
  12. 'CloseBox' => 'index/cabinet/add_cabinet',
  13. 'OpenBox' => 'index/cabinet/open_box',
  14. 'checkRcode' => 'index/order/check_rcode',
  15. 'orderBindCode' => 'index/order/order_bind_code',
  16. ));