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

Column.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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\admin\logic\goods\ColumnLogic;
  21. use app\admin\validate\goods\ColumnValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\model\goods\GoodsColumn as GoodsColumnModel;
  24. use app\common\server\JsonServer;
  25. /**
  26. * 商品栏目
  27. * Class GoodsColumn
  28. * @package app\admin\controller
  29. */
  30. class Column extends AdminBase
  31. {
  32. /**
  33. * Notes: 列表
  34. * @author 段誉(2021/4/15 10:49)
  35. * @return string|\think\response\Json
  36. */
  37. public function lists()
  38. {
  39. if ($this->request->isAjax()) {
  40. $get = $this->request->get();
  41. return JsonServer::success('获取成功', ColumnLogic::lists($get));
  42. }
  43. return view();
  44. }
  45. /**
  46. * Notes: 添加
  47. * @author 段誉(2021/4/15 10:49)
  48. * @return string|\think\response\Json
  49. */
  50. public function add()
  51. {
  52. if ($this->request->isAjax()) {
  53. $post = $this->request->post();
  54. (new ColumnValidate())->goCheck('add');
  55. if (ColumnLogic::add($post)) {
  56. return JsonServer::success('操作成功');
  57. }
  58. return JsonServer::error(ColumnLogic::getError() ?: '操作失败');
  59. }
  60. return view();
  61. }
  62. /**
  63. * Notes: 编辑
  64. * @author 段誉(2021/4/15 10:49)
  65. * @return string|\think\response\Json
  66. * @throws \think\db\exception\DataNotFoundException
  67. * @throws \think\db\exception\DbException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. */
  70. public function edit()
  71. {
  72. $id = $this->request->get('id');
  73. if ($this->request->isAjax()) {
  74. $post = $this->request->post();
  75. (new ColumnValidate())->goCheck('edit');
  76. if (ColumnLogic::edit($post)) {
  77. return JsonServer::success('操作成功');
  78. }
  79. return JsonServer::error(ColumnLogic::getError() ?: '操作失败');
  80. }
  81. return view('', ['detail' => GoodsColumnModel::find($id)]);
  82. }
  83. /**
  84. * Notes: 删除
  85. * @author 段誉(2021/4/15 10:49)
  86. * @return \think\response\Json
  87. */
  88. public function del()
  89. {
  90. if ($this->request->isAjax()) {
  91. $id = $this->request->post('id');
  92. (new ColumnValidate())->goCheck('del');
  93. if (ColumnLogic::del($id)) {
  94. return JsonServer::success('操作成功');
  95. }
  96. return JsonServer::error(ColumnLogic::getError() ?: '操作失败');
  97. }
  98. }
  99. /**
  100. * Notes: 切换状态
  101. * @author 段誉(2021/4/15 15:17)
  102. * @return \think\response\Json
  103. */
  104. public function switchStatus()
  105. {
  106. $post = $this->request->post();
  107. GoodsColumnModel::update(['status' => $post['status']],['id' => $post['id']]);
  108. return JsonServer::success('操作成功');
  109. }
  110. }