General.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\UserSearch;
  4. /**
  5. * @title 其他接口
  6. * @controller General
  7. * @group base
  8. */
  9. class General extends Base
  10. {
  11. public function initialize()
  12. {
  13. parent::initialize();
  14. parent::checkLogin();
  15. }
  16. /**
  17. * @title 用户搜索历史
  18. * @desc 用户搜索历史
  19. * @author qc
  20. * @method GET
  21. * @url /api/General/getSearchHistory
  22. * @header name:Authorization require:1 desc:Token
  23. * @param name:page type:int default:0 desc:页数
  24. * @param name:page_num type:int default:20 desc:每页数
  25. * @param name:type type:int default:-- desc:类型0=>"全部",1=>'视频',2=>'图文',3=>'资料',4=>'新闻',5=>'需求',6=>'论坛',7=>'商品',8=>'招聘',9=>'供应商',10=>'供应商产品',
  26. * @return name:title type:string default:-- desc:标题
  27. * @return name:type type:int default:-- desc:类型0全局,1视频,2图文,3资料,4新闻,5需求
  28. */
  29. public function getSearchHistory()
  30. {
  31. $title = input('title');
  32. $type= input('type',-1);
  33. $where= [];
  34. $where [] = ['user_id','=',$this->user_id];
  35. if($title)$where [] = ['title','like','%'.$title.'%'];
  36. if($type > -1)$where [] = ['type','=',$type];
  37. $list = UserSearch::where($where)
  38. ->limit($this->off_set,$this->page_num)
  39. ->order('create_at desc,id desc')
  40. ->select()->toArray();
  41. $this->success('ok',['list'=>$list]);
  42. }
  43. /**
  44. * @title 删除||清空搜索历史
  45. * @desc 删除||清空搜索历史
  46. * @author qc
  47. * @method POST
  48. * @url /api/General/delSearchHistory
  49. * @header name:Authorization require:1 desc:Token
  50. * @param name:id type:int default:0 desc:搜索记录id【不传值清空所有搜索记录】
  51. */
  52. public function delSearchHistory()
  53. {
  54. $id = input('post.id');
  55. $where= [];
  56. $where [] = ['user_id','=',$this->user_id];
  57. if($id)$where [] = ['id','=',$id];
  58. UserSearch::where($where)->delete();
  59. $this->success('删除成功');
  60. }
  61. }