截流自动化的商城平台
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.

ArticleLogic.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\Article;
  5. use app\common\model\content\ArticleCategory;
  6. use app\common\server\UrlServer;
  7. use think\Db;
  8. class ArticleLogic extends Logic
  9. {
  10. /**
  11. * @Notes: 文章分类
  12. * @Author: 张无忌
  13. * @param $get
  14. * @return array
  15. */
  16. public static function category($get)
  17. {
  18. try {
  19. $model = new ArticleCategory();
  20. return $model->field(['id', 'name'])
  21. ->where([
  22. ['del', '=', 0],
  23. ['is_show', '=', 1]
  24. ])->select()->toArray();
  25. } catch (\Exception $e) {
  26. return ['error'=>$e->getMessage()];
  27. }
  28. }
  29. /**
  30. * @Notes: 文章列表
  31. * @Author: 张无忌
  32. * @param $get
  33. * @return array
  34. */
  35. public static function lists($get)
  36. {
  37. try {
  38. $where = [
  39. ['a.del', '=', 0],
  40. ['a.is_show', '=', 1],
  41. ['c.del', '=', 0],
  42. ['c.is_show', '=', 1],
  43. ];
  44. if(isset($get['cid']) && !empty($get['cid'])) {
  45. $where[] = ['cid', '=', $get['cid']];
  46. }
  47. $order = [
  48. 'sort' => 'asc',
  49. 'id' => 'desc'
  50. ];
  51. $model = new Article();
  52. $count = $model->alias('a')->join('article_category c', 'c.id = a.cid')->where($where)->count();
  53. $list = $model->alias('a')
  54. ->join('article_category c', 'c.id = a.cid')
  55. ->field(['a.id', 'a.title', 'a.image', 'a.visit', 'a.likes','a.intro', 'a.content', 'a.create_time'])
  56. ->where($where)
  57. ->order($order)
  58. ->page($get['page_no'], $get['page_size'])
  59. ->select()
  60. ->toArray();
  61. $more = is_more($count, $get['page_no'], $get['page_size']);
  62. $data = [
  63. 'list' => $list,
  64. 'page_no' => $get['page_no'],
  65. 'page_size' => $get['page_size'],
  66. 'count' => $count,
  67. 'more' => $more
  68. ];
  69. return $data;
  70. } catch (\Exception $e) {
  71. return ['error'=>$e->getMessage()];
  72. }
  73. }
  74. /**
  75. * @Notes: 文章详细
  76. * @Author: 张无忌
  77. * @param $id
  78. * @return array
  79. */
  80. public static function detail($id)
  81. {
  82. $article = Article::field('id,title,create_time,visit,content')->where('id', $id)->findOrEmpty();
  83. if($article->isEmpty()) {
  84. $article = [];
  85. }else{
  86. $article->visit = $article->visit + 1;
  87. $article->save();
  88. $article = $article->toArray();
  89. }
  90. return $article;
  91. }
  92. }