截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CommunitySearch.php 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\CommunitySearchRecordLogic;
  4. use app\common\basics\Api;
  5. use app\common\server\JsonServer;
  6. /**
  7. * 种草社区搜索记录
  8. * Class CommunitySearchRecord
  9. * @package app\api\controller
  10. */
  11. class CommunitySearch extends Api
  12. {
  13. public $like_not_need_login = ['lists'];
  14. /**
  15. * @notes 历史记录
  16. * @return \think\response\Json
  17. * @throws \think\db\exception\DataNotFoundException
  18. * @throws \think\db\exception\DbException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @author 段誉
  21. * @date 2022/5/9 16:59
  22. */
  23. public function lists()
  24. {
  25. $lists = CommunitySearchRecordLogic::lists($this->user_id);
  26. return JsonServer::success('获取成功', $lists);
  27. }
  28. /**
  29. * @notes 清空历史搜索
  30. * @return \think\response\Json
  31. * @author 段誉
  32. * @date 2022/5/9 16:59
  33. */
  34. public function clear()
  35. {
  36. CommunitySearchRecordLogic::clear($this->user_id);
  37. return JsonServer::success('清空成功');
  38. }
  39. }