截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

HelpLogic.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace app\admin\logic\content;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\Help;
  5. use Exception;
  6. class HelpLogic 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. if (!empty($get['title']) and $get['title'])
  20. $where[] = ['title', 'like', '%'.$get['title'].'%'];
  21. if (!empty($get['cid']) and is_numeric($get['cid']))
  22. $where[] = ['cid', '=', $get['cid']];
  23. $model = new Help();
  24. $lists = $model->field(true)
  25. ->where($where)
  26. ->with(['category'])
  27. ->order('sort', 'asc')
  28. ->paginate([
  29. 'page' => $get['page'],
  30. 'list_rows' => $get['limit'],
  31. 'var_page' => 'page'
  32. ])
  33. ->toArray();
  34. foreach ($lists['data'] as &$item) {
  35. $item['category'] = $item['category']['name'] ?? '未知';
  36. $item['is_show'] = $item['is_show'] ? '显示' : '隐藏';
  37. }
  38. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  39. } catch (Exception $e) {
  40. return ['error'=>$e->getMessage()];
  41. }
  42. }
  43. /**
  44. * @Notes: 帮助详细
  45. * @Author: 张无忌
  46. * @param $id
  47. * @return array
  48. */
  49. public static function detail($id)
  50. {
  51. $model = new Help();
  52. return $model->field(true)->findOrEmpty($id)->toArray();
  53. }
  54. /**
  55. * @Notes: 添加帮助
  56. * @Author: 张无忌Help
  57. * @param $post
  58. * @return bool
  59. */
  60. public static function add($post)
  61. {
  62. try {
  63. Help::create([
  64. 'cid' => $post['cid'],
  65. 'title' => $post['title'],
  66. 'image' => $post['image'] ?? '',
  67. 'intro' => $post['intro'] ?? '',
  68. 'content' => $post['content'] ?? '',
  69. 'visit' => 0,
  70. 'likes' => 0,
  71. 'sort' => $post['sort'] ?? 0,
  72. 'is_show' => $post['is_show']
  73. ]);
  74. return true;
  75. } catch (\Exception $e) {
  76. static::$error = $e->getMessage();
  77. return false;
  78. }
  79. }
  80. /**
  81. * @Notes: 编辑帮助
  82. * @Author: 张无忌
  83. * @param $post
  84. * @return bool
  85. */
  86. public static function edit($post)
  87. {
  88. try {
  89. Help::update([
  90. 'cid' => $post['cid'],
  91. 'title' => $post['title'],
  92. 'image' => $post['image'] ?? '',
  93. 'intro' => $post['intro'] ?? '',
  94. 'content' => $post['content'] ?? '',
  95. 'visit' => 0,
  96. 'likes' => 0,
  97. 'sort' => $post['sort'] ?? 0,
  98. 'is_show' => $post['is_show']
  99. ], ['id'=>$post['id']]);
  100. return true;
  101. } catch (\Exception $e) {
  102. static::$error = $e->getMessage();
  103. return false;
  104. }
  105. }
  106. /**
  107. * @Notes: 删除
  108. * @Author: 张无忌
  109. * @param $id
  110. * @return bool
  111. */
  112. public static function del($id)
  113. {
  114. try {
  115. Help::update([
  116. 'del' => 1,
  117. 'update_time' => time()
  118. ], ['id'=>$id]);
  119. return true;
  120. } catch (\Exception $e) {
  121. static::$error = $e->getMessage();
  122. return false;
  123. }
  124. }
  125. /**
  126. * @Notes: 隐藏
  127. * @Author: 张无忌
  128. * @param $id
  129. * @return bool
  130. */
  131. public static function hide($id)
  132. {
  133. try {
  134. $model = new Help();
  135. $article = $model->findOrEmpty($id)->toArray();
  136. Help::update([
  137. 'is_show' => !$article['is_show'],
  138. 'update_time' => time()
  139. ], ['id'=>$id]);
  140. return true;
  141. } catch (\Exception $e) {
  142. static::$error = $e->getMessage();
  143. return false;
  144. }
  145. }
  146. }