1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\api\controller;
- use app\common\model\UserSearch;
- /**
- * @title 其他接口
- * @controller General
- * @group base
- */
- class General extends Base
- {
- public function initialize()
- {
- parent::initialize();
- parent::checkLogin();
- }
- /**
- * @title 用户搜索历史
- * @desc 用户搜索历史
- * @author qc
- * @method GET
- * @url /api/General/getSearchHistory
- * @header name:Authorization require:1 desc:Token
- * @param name:page type:int default:0 desc:页数
- * @param name:page_num type:int default:20 desc:每页数
- * @param name:type type:int default:-- desc:类型0=>"全部",1=>'视频',2=>'图文',3=>'资料',4=>'新闻',5=>'需求',6=>'论坛',7=>'商品',8=>'招聘',9=>'供应商',10=>'供应商产品',
- * @return name:title type:string default:-- desc:标题
- * @return name:type type:int default:-- desc:类型0全局,1视频,2图文,3资料,4新闻,5需求
- */
- public function getSearchHistory()
- {
- $title = input('title');
- $type= input('type',-1);
- $where= [];
- $where [] = ['user_id','=',$this->user_id];
- if($title)$where [] = ['title','like','%'.$title.'%'];
- if($type > -1)$where [] = ['type','=',$type];
- $list = UserSearch::where($where)
- ->limit($this->off_set,$this->page_num)
- ->order('create_at desc,id desc')
- ->select()->toArray();
- $this->success('ok',['list'=>$list]);
- }
- /**
- * @title 删除||清空搜索历史
- * @desc 删除||清空搜索历史
- * @author qc
- * @method POST
- * @url /api/General/delSearchHistory
- * @header name:Authorization require:1 desc:Token
- * @param name:id type:int default:0 desc:搜索记录id【不传值清空所有搜索记录】
- */
- public function delSearchHistory()
- {
- $id = input('post.id');
- $where= [];
- $where [] = ['user_id','=',$this->user_id];
- if($id)$where [] = ['id','=',$id];
- UserSearch::where($where)->delete();
- $this->success('删除成功');
- }
- }
|