home.php 639 B

12345678910111213141516171819
  1. <?php
  2. //用户登陆页面
  3. Route::get('User/Login', 'UserController@Login');
  4. //用户登陆接口
  5. Route::post('User/Login', 'UserController@doLogin');
  6. //用户主页页面
  7. Route::get('User/Index', 'UserController@Index');
  8. //用户绑定接口
  9. Route::post('User/Bind', 'UserController@Bind');
  10. //获取用户信息接口
  11. Route::get('User/Info', 'UserController@Info');
  12. //加入房间
  13. Route::post('Game/Join', 'GameController@Join');
  14. //退出房间
  15. Route::post('Game/Quit', 'GameController@Quit');
  16. //获取题目接口
  17. Route::get('Game/Question', 'GameController@Question');
  18. //答题接口
  19. Route::post('Game/Answer', 'GameController@Answer');