"全部",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('删除成功'); } }