1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace app\api\controller;
- use app\common\model\Topic as Topics;
- use app\common\controller\Api;
- use think\facade\Validate;
- /**
- * 话题
- * Class Index
- */
- class Topic extends Api
- {
- /**
- * 话题列表
- */
- public function topic_list(){
- $this->check_login();
- $type = input('type',0); //1:banner列表 2:导航列表 3:推荐列表
- $attention = input('attention',0); //1:我关注的
- $result = Topics::topicList($type,$attention);
- $this->success($result['msg'],$result['data']);
- }
- /**
- * 关注话题
- */
- public function attention_topic(){
- $this->check_login();
- $topic_id = input('topic_id'); //话题ID
- if (!$topic_id) $this->error('参数错误');
- $result = Topics::attentionTopic($topic_id);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
- /**
- * 取消关注话题
- */
- public function del_attention_topic(){
- $this->check_login();
- $topic_id = input('topic_id'); //话题ID
- if (!$topic_id) $this->error('参数错误');
- $result = Topics::delAttentionTopic($topic_id);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
- /**
- * 话题主页
- */
- public function topic_detail(){
- $this->check_login();
- $topic_id = input('topic_id'); //话题ID
- if (!$topic_id) $this->error('参数错误');
- $result = Topics::topicDetail($topic_id);
- $this->success($result['msg'],$result['data']);
- }
- }
|