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

Category.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\goods;
  20. use app\common\basics\AdminBase;
  21. use app\admin\logic\goods\CategoryLogic;
  22. use app\admin\validate\goods\CategoryValidate;
  23. use think\exception\ValidateException;
  24. use app\common\server\JsonServer;
  25. use think\facade\View;
  26. /**
  27. * 平台商品分类
  28. * Class Category
  29. * @package app\admin\controller\goods
  30. */
  31. class Category extends AdminBase
  32. {
  33. /**
  34. * 列表
  35. */
  36. public function lists()
  37. {
  38. if ($this->request->isAjax()) {
  39. $category_tree = CategoryLogic::lists();
  40. // reqData方式渲染
  41. $treeTableData = [
  42. 'code' => 0,
  43. 'msg' => '分类列表',
  44. 'data' => json_encode($category_tree)
  45. ];
  46. return json($treeTableData);
  47. }
  48. return view();
  49. }
  50. /**
  51. * 添加
  52. */
  53. public function add()
  54. {
  55. if ($this->request->isAjax()) {
  56. $post = $this->request->post();
  57. $post['del'] = 0;
  58. try {
  59. validate(CategoryValidate::class)->scene('add')->check($post);
  60. } catch (ValidateException $e) {
  61. return JsonServer::error($e->getError());
  62. }
  63. $res = CategoryLogic::add($post);
  64. if ($res) {
  65. return JsonServer::success('分类添加成功');
  66. } else {
  67. return JsonServer::error('分类添加失败');
  68. }
  69. }
  70. $category_list = CategoryLogic::categoryTwoTree();
  71. return view('add', ['category_list' => $category_list]);
  72. }
  73. /**
  74. * 删除
  75. */
  76. public function del()
  77. {
  78. $post = $this->request->post();
  79. try {
  80. validate(CategoryValidate::class)->scene('del')->check($post);
  81. } catch (ValidateException $e) {
  82. return JsonServer::error($e->getError());
  83. }
  84. $res = CategoryLogic::del($post);
  85. if ($res) {
  86. return JsonServer::success('删除分类成功');
  87. } else {
  88. return JsonServer::error('删除分类失败');
  89. }
  90. }
  91. /**
  92. * 编辑
  93. */
  94. public function edit()
  95. {
  96. if ($this->request->isAjax()) {
  97. $post = $this->request->post();
  98. $post['del'] = 0;
  99. try {
  100. validate(CategoryValidate::class)->scene('edit')->check($post);
  101. } catch (ValidateException $e) {
  102. return JsonServer::error($e->getError());
  103. }
  104. $res = CategoryLogic::edit($post);
  105. if ($res) {
  106. return JsonServer::success('编辑分类成功');
  107. } else {
  108. return JsonServer::error('编辑分类失败');
  109. }
  110. }
  111. $id = $this->request->get('id');
  112. $detail = CategoryLogic::getCategory($id);
  113. $category_list = CategoryLogic::categoryTwoTree();
  114. return view('edit', [
  115. 'detail' => $detail,
  116. 'category_list' => $category_list
  117. ]);
  118. }
  119. /**
  120. * 修改显示状态
  121. */
  122. public function switchStatus()
  123. {
  124. $post = $this->request->post();
  125. $res = CategoryLogic::switchStatus($post);
  126. if ($res) {
  127. return JsonServer::success('修改成功');
  128. } else {
  129. return JsonServer::error('修改失败');
  130. }
  131. }
  132. }