ActivityController.php 996 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /**
  3. * 首页
  4. * @author wesmiler
  5. */
  6. namespace app\weixin\controller;
  7. class ActivityController extends BaseController
  8. {
  9. /**
  10. * 首页
  11. * @return mixed
  12. */
  13. public function index(){
  14. return $this->fetch(':index');
  15. }
  16. /**
  17. * 活动详情
  18. * @return mixed
  19. */
  20. public function detail(){
  21. return $this->fetch();
  22. }
  23. /**
  24. * 活动报名页
  25. * @return mixed
  26. */
  27. public function book(){
  28. return $this->fetch();
  29. }
  30. /**
  31. * 报名详情
  32. * @return mixed
  33. */
  34. public function bookDetail(){
  35. return $this->fetch();
  36. }
  37. /**
  38. * 缘分互选
  39. * @return mixed
  40. */
  41. public function choose(){
  42. return $this->fetch();
  43. }
  44. /**
  45. * 完善资料
  46. * @return mixed
  47. */
  48. public function profile(){
  49. return $this->fetch();
  50. }
  51. /**
  52. * 匹配
  53. * @return mixed
  54. */
  55. public function match(){
  56. return $this->fetch();
  57. }
  58. }
  59. ?>