截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\ArticleLogic;
  4. use app\common\basics\Api;
  5. use app\common\server\JsonServer;
  6. class Article extends Api
  7. {
  8. public $like_not_need_login = ['category', 'lists', 'detail'];
  9. /**
  10. * @Notes: 文章分类
  11. * @Author: 张无忌
  12. */
  13. public function category()
  14. {
  15. $get = $this->request->get();
  16. $lists = ArticleLogic::category($get);
  17. return JsonServer::success('获取成功', $lists);
  18. }
  19. /**
  20. * @Notes: 文章列表
  21. * @Author: 张无忌
  22. */
  23. public function lists()
  24. {
  25. $get = $this->request->get();
  26. $get['page_no'] = $this->page_no;
  27. $get['page_size'] = $this->page_size;
  28. $lists = ArticleLogic::lists($get);
  29. return JsonServer::success('获取成功', $lists);
  30. }
  31. /**
  32. * @Notes: 文章详细
  33. * @Author: 张无忌
  34. */
  35. public function detail()
  36. {
  37. $id = $this->request->get('id');
  38. $detail = ArticleLogic::detail($id);
  39. return JsonServer::success('获取成功', $detail);
  40. }
  41. }