| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * 用户消息模块
- * @author wesmiler
- */
- namespace app\weixin\controller;
- class PushController extends BaseController
- {
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * 消息主页
- * @author wesmiler
- * @return mixed
- */
- public function index()
- {
- return $this->fetch(':member/push/index');
- }
- /**
- * 消息分类列表
- * @return mixed]
- */
- public function lists()
- {
- return $this->fetch(':member/push/lists');
- }
- /**
- * 详情
- * @return mixed]
- */
- public function detail()
- {
- return $this->fetch(':member/push/detail');
- }
- }
|