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

ArticleCategoryLogic.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace app\admin\logic\content;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\ArticleCategory;
  5. use Exception;
  6. class ArticleCategoryLogic extends Logic
  7. {
  8. /**
  9. * 获取文章分类
  10. * @param $get
  11. * @return array
  12. */
  13. public static function lists($get)
  14. {
  15. try {
  16. $where = [
  17. ['del', '=', 0]
  18. ];
  19. $model = new ArticleCategory();
  20. $lists = $model->field(true)
  21. ->where($where)
  22. ->order('id', 'desc')
  23. ->paginate([
  24. 'page' => $get['page'],
  25. 'list_rows' => $get['limit'],
  26. 'var_page' => 'page'
  27. ])
  28. ->toArray();
  29. foreach ($lists['data'] as &$item) {
  30. $item['is_show'] = $item['is_show'] ? '启用' : '停用';
  31. }
  32. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  33. } catch (Exception $e) {
  34. return ['error'=>$e->getMessage()];
  35. }
  36. }
  37. /**
  38. * @Notes: 获取文章分类
  39. * @Author: 张无忌
  40. * @return array
  41. */
  42. public static function getCategory()
  43. {
  44. try {
  45. $model = new ArticleCategory();
  46. return $model->field(true)
  47. ->where(['del'=>0, 'is_show'=>1])
  48. ->order('id', 'desc')
  49. ->select()
  50. ->toArray();
  51. } catch (\Exception $e) {
  52. return [];
  53. }
  54. }
  55. /**
  56. * 获取文章分类详细
  57. * @param $id
  58. * @return array
  59. */
  60. public static function detail($id)
  61. {
  62. $model = new ArticleCategory();
  63. return $model->field(true)->findOrEmpty($id)->toArray();
  64. }
  65. /**
  66. * 添加文章分类
  67. * @param $post
  68. * @return bool
  69. */
  70. public static function add($post)
  71. {
  72. try {
  73. ArticleCategory::create([
  74. 'name' => $post['name'],
  75. 'is_show' => $post['is_show']
  76. ]);
  77. return true;
  78. } catch (\Exception $e) {
  79. static::$error = $e->getMessage();
  80. return false;
  81. }
  82. }
  83. /**
  84. * 编辑文章分类
  85. * @param $post
  86. * @return bool
  87. */
  88. public static function edit($post)
  89. {
  90. try {
  91. ArticleCategory::update([
  92. 'name' => $post['name'],
  93. 'is_show' => $post['is_show']
  94. ], ['id'=>$post['id']]);
  95. return true;
  96. } catch (\Exception $e) {
  97. static::$error = $e->getMessage();
  98. return false;
  99. }
  100. }
  101. /**
  102. * 删除文章分类
  103. * @param $id
  104. * @return bool
  105. */
  106. public static function del($id)
  107. {
  108. try {
  109. ArticleCategory::update([
  110. 'del' => 1
  111. ], ['id'=>$id]);
  112. return true;
  113. } catch (\Exception $e) {
  114. static::$error = $e->getMessage();
  115. return false;
  116. }
  117. }
  118. /**
  119. * @Notes: 隐藏
  120. * @Author: 张无忌
  121. * @param $id
  122. * @return bool
  123. */
  124. public static function hide($id)
  125. {
  126. try {
  127. $model = new ArticleCategory();
  128. $category = $model->findOrEmpty($id)->toArray();
  129. ArticleCategory::update([
  130. 'is_show' => !$category['is_show'],
  131. 'update_time' => time()
  132. ], ['id'=>$id]);
  133. return true;
  134. } catch (\Exception $e) {
  135. static::$error = $e->getMessage();
  136. return false;
  137. }
  138. }
  139. }