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

Closure.php 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace app\shop\controller\content;
  3. use app\shop\logic\content\ClosureCategoryLogic; //应用分类 逻辑控制器
  4. use app\shop\logic\content\ClosureLogic; //截流配置 逻辑控制器
  5. use app\shop\validate\content\ClosureValidate; //截流配置 验证器
  6. use app\common\server\JsonServer;
  7. use app\common\basics\ShopBase; //$this->shop_id;
  8. class Closure extends ShopBase
  9. {
  10. public function lists()
  11. {
  12. if ($this->request->isAjax()) {
  13. $get = $this->request->get();
  14. $lists = ClosureLogic::lists($get,$this->shop_id);
  15. return JsonServer::success("获取成功", $lists);
  16. }
  17. return view('', [
  18. 'category' => ClosureCategoryLogic::getCategory($this->shop_id),
  19. 'category2' => ClosureCategoryLogic::getCategory2($this->shop_id)
  20. ]);
  21. }
  22. public function add()
  23. {
  24. if ($this->request->isAjax()) {
  25. $post = $this->request->post();
  26. $post['shop_id'] = $this->shop_id;
  27. (new ClosureValidate())->goCheck('add',$post);
  28. $res = ClosureLogic::add($post);
  29. if ($res === false) {
  30. $error = ClosureLogic::getError() ?: '新增失败';
  31. return JsonServer::error($error);
  32. }
  33. return JsonServer::success('新增成功');
  34. }
  35. $title_no = date('YmdHis') . mt_rand(1000, 9999);
  36. $a = ClosureCategoryLogic::getCategory($this->shop_id);
  37. $b = ClosureCategoryLogic::getCategory2($this->shop_id);
  38. //是否已配置分类
  39. $is_true = false;
  40. foreach ($a as $k => $v) {
  41. if($v['name'] == '默认'){
  42. $is_true = true;
  43. }
  44. }
  45. if($is_true === false){
  46. foreach ($b as $k => $v) {
  47. if($v['name'] == '默认'){
  48. $is_true = true;
  49. }
  50. }
  51. }
  52. //不管当前是什么类型的app设置
  53. $search_list = [
  54. 'xhs' => [
  55. "a" => ["综合",'最新','最多点赞','最多评论'], //排序依据
  56. "b" => ["不限",'视频','图文','直播'], //笔记类型
  57. "c" => ["不限",'一天内','一周内','半年内'], //发布时间
  58. "d" => ["不限",'已看过','未看过','已关注'], //搜索范围
  59. ]
  60. ];
  61. return view('', [
  62. 'category' => $a,
  63. 'category2' => $b,
  64. 'title_no' => $title_no,
  65. 'is_true' => $is_true,
  66. 'search_list' => $search_list
  67. ]);
  68. }
  69. /***
  70. * @Notes: 编辑文章
  71. * @Author: 张无忌
  72. */
  73. public function edit()
  74. {
  75. if ($this->request->isAjax()) {
  76. $post = $this->request->post();
  77. $post['shop_id'] = $this->shop_id;
  78. (new ClosureValidate())->goCheck('edit',$post);
  79. $res = ClosureLogic::edit($post);
  80. if ($res === false) {
  81. $error = ClosureLogic::getError() ?: '编辑失败';
  82. return JsonServer::error($error);
  83. }
  84. return JsonServer::success('编辑成功');
  85. }
  86. $id = $this->request->get('id');
  87. $data = ClosureLogic::detail($id);
  88. //不管当前是什么类型的app设置
  89. $search_list = [
  90. 'xhs' => [
  91. "a" => ["综合",'最新','最多点赞','最多评论'], //排序依据
  92. "b" => ["不限",'视频','图文','直播'], //笔记类型
  93. "c" => ["不限",'一天内','一周内','半年内'], //发布时间
  94. "d" => ["不限",'已看过','未看过','已关注'], //搜索范围
  95. ]
  96. ];
  97. return view('', [
  98. 'detail' => $data,
  99. 'extend' => $data['form_data'],
  100. 'category' => ClosureCategoryLogic::getCategory($this->shop_id),
  101. 'category2' => ClosureCategoryLogic::getCategory2($this->shop_id),
  102. 'search_list' => $search_list
  103. ]);
  104. }
  105. /**
  106. * @Notes: 删除文章
  107. * @Author: 张无忌
  108. */
  109. public function del()
  110. {
  111. if ($this->request->isAjax()) {
  112. (new ClosureValidate())->goCheck('id');
  113. $id = $this->request->post('id');
  114. $res = ClosureLogic::del($id);
  115. if ($res === false) {
  116. $error = ClosureLogic::getError() ?: '删除失败';
  117. return JsonServer::error($error);
  118. }
  119. return JsonServer::success('删除成功');
  120. }
  121. return JsonServer::success('异常');
  122. }
  123. /**
  124. * @Notes: 隐藏文章
  125. * @Author: 张无忌
  126. */
  127. public function hide()
  128. {
  129. if ($this->request->isAjax()) {
  130. (new ClosureValidate())->goCheck('id');
  131. $id = $this->request->post('id');
  132. $res = ClosureLogic::hide($id);
  133. if ($res === false) {
  134. $error = ClosureLogic::getError() ?: '操作失败';
  135. return JsonServer::error($error);
  136. }
  137. return JsonServer::success('操作成功');
  138. }
  139. return JsonServer::success('异常');
  140. }
  141. }