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

ClosureLogic.php 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?php
  2. namespace app\shop\logic\content;
  3. use app\common\basics\Logic;
  4. use app\common\model\content\Closure; //截流配置表 模型
  5. use Exception;
  6. class ClosureLogic extends Logic
  7. {
  8. /**
  9. * 获取文章分类
  10. * @param $get
  11. * @return array
  12. */
  13. public static function lists($get, $shop_id)
  14. {
  15. try {
  16. $where = [
  17. ['shop_id', '=', $shop_id],
  18. ['del', '=', 0]
  19. ];
  20. if (!empty($get['title']) and $get['title'])
  21. $where[] = ['title', 'like', '%' . $get['title'] . '%'];
  22. if (!empty($get['cid']) and is_numeric($get['cid']))
  23. $where[] = ['cid', '=', $get['cid']];
  24. //行业分类
  25. if (!empty($get['yid']) and is_numeric($get['yid']))
  26. $where[] = ['yid', '=', $get['yid']];
  27. if (isset($get['is_notice']) and is_numeric($get['is_notice']))
  28. $where[] = ['is_notice', '=', $get['is_notice']];
  29. $model = new Closure();
  30. $lists = $model->field(true)
  31. ->where($where)
  32. ->with(['category', 'category2'])
  33. //->order('sort', 'asc')
  34. ->order([
  35. 'yid' => 'asc',
  36. 'cid' => 'asc'
  37. ])
  38. ->paginate([
  39. 'page' => $get['page'],
  40. 'list_rows' => $get['limit'],
  41. 'var_page' => 'page'
  42. ])
  43. ->toArray();
  44. foreach ($lists['data'] as &$item) {
  45. $item['category'] = $item['category']['name'] ?? '未知';
  46. $item['category2'] = $item['category2']['name'] ?? '未知';
  47. $item['is_notice'] = $item['is_notice'] ? '是' : '否';
  48. $item['is_show'] = $item['is_show'] ? '显示' : '隐藏';
  49. }
  50. return ['count' => $lists['total'], 'lists' => $lists['data']];
  51. } catch (Exception $e) {
  52. return ['error' => $e->getMessage()];
  53. }
  54. }
  55. /**
  56. * @Notes: 文章详细
  57. * @Author: 张无忌
  58. * @param $id
  59. * @return array
  60. */
  61. public static function detail($id)
  62. {
  63. $model = new Closure();
  64. $data = $model->field(true)->findOrEmpty($id)->toArray();
  65. $data['form_data'] = json_decode($data['form_data'], true);
  66. return $data;
  67. }
  68. /**
  69. * @Notes: 添加文章
  70. * @Author: 张无忌
  71. * @param $post
  72. * @return bool
  73. */
  74. public static function add($post)
  75. {
  76. try {
  77. $model = new Closure();
  78. $arr = $model->postDataHandle($post);
  79. Closure::create([
  80. 'shop_id' => $post['shop_id'],
  81. 'cid' => $post['cid'],
  82. 'yid' => $post['yid'],
  83. 'title' => $post['title'],
  84. 'image' => $post['image'] ?? '',
  85. 'intro' => $post['intro'] ?? '',
  86. 'content' => $post['content'] ?? '',
  87. 'visit' => 0,
  88. 'likes' => 0,
  89. 'sort' => $post['sort'] ?? 0,
  90. 'is_notice' => $post['is_notice'],
  91. 'is_show' => $post['is_show'],
  92. 'version' => $post['shop_id'] . '-' . time(),
  93. 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE),
  94. 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE)
  95. ]);
  96. return true;
  97. } catch (\Exception $e) {
  98. static::$error = $e->getMessage();
  99. return false;
  100. }
  101. }
  102. /**
  103. * @Notes: 编辑文章
  104. * @Author: 张无忌
  105. * @param $post
  106. * @return bool
  107. */
  108. public static function edit($post)
  109. {
  110. try {
  111. $model = new Closure();
  112. $arr = $model->postDataHandle($post);
  113. Closure::update([
  114. 'shop_id' => $post['shop_id'],
  115. 'cid' => $post['cid'],
  116. 'yid' => $post['yid'] ?? '',
  117. 'title' => $post['title'],
  118. 'image' => $post['image'] ?? '',
  119. 'intro' => $post['intro'] ?? '',
  120. 'content' => $post['content'] ?? '',
  121. 'visit' => 0,
  122. 'likes' => 0,
  123. 'sort' => $post['sort'] ?? 0,
  124. 'is_notice' => $post['is_notice'],
  125. 'is_show' => $post['is_show'],
  126. 'version' => $post['version'],
  127. 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE),
  128. 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE)
  129. ], ['id' => $post['id']]);
  130. return true;
  131. } catch (\Exception $e) {
  132. static::$error = $e->getMessage();
  133. return false;
  134. }
  135. }
  136. /**
  137. * @Notes: 删除
  138. * @Author: 张无忌
  139. * @param $id
  140. * @return bool
  141. */
  142. public static function del($id)
  143. {
  144. try {
  145. Closure::update([
  146. 'del' => 1,
  147. 'update_time' => time()
  148. ], ['id' => $id]);
  149. return true;
  150. } catch (\Exception $e) {
  151. static::$error = $e->getMessage();
  152. return false;
  153. }
  154. }
  155. /**
  156. * @Notes: 隐藏
  157. * @Author: 张无忌
  158. * @param $id
  159. * @return bool
  160. */
  161. public static function hide($id)
  162. {
  163. try {
  164. $model = new Closure();
  165. $article = $model->findOrEmpty($id)->toArray();
  166. Closure::update([
  167. 'is_show' => !$article['is_show'],
  168. 'update_time' => time()
  169. ], ['id' => $id]);
  170. return true;
  171. } catch (\Exception $e) {
  172. static::$error = $e->getMessage();
  173. return false;
  174. }
  175. }
  176. }