PushController.php 693 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 用户消息模块
  4. * @author wesmiler
  5. */
  6. namespace app\weixin\controller;
  7. class PushController extends BaseController
  8. {
  9. public function __construct()
  10. {
  11. parent::__construct();
  12. }
  13. /**
  14. * 消息主页
  15. * @author wesmiler
  16. * @return mixed
  17. */
  18. public function index()
  19. {
  20. return $this->fetch(':member/push/index');
  21. }
  22. /**
  23. * 消息分类列表
  24. * @return mixed]
  25. */
  26. public function lists()
  27. {
  28. return $this->fetch(':member/push/lists');
  29. }
  30. /**
  31. * 详情
  32. * @return mixed]
  33. */
  34. public function detail()
  35. {
  36. return $this->fetch(':member/push/detail');
  37. }
  38. }