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

Brand.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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\BrandLogic;
  21. use app\admin\validate\goods\BrandValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\model\goods\GoodsBrand as GoodsBrandModel;
  24. use app\common\server\JsonServer;
  25. /**
  26. * 商品品牌
  27. * Class GoodsBrand
  28. * @package app\admin\controller
  29. */
  30. class Brand 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('获取成功', BrandLogic::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 BrandValidate())->goCheck('add');
  55. if (BrandLogic::add($post)) {
  56. return JsonServer::success('操作成功');
  57. }
  58. return JsonServer::error(BrandLogic::getError() ?: '操作失败');
  59. }
  60. return view('', ['capital' => getCapital()]);
  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 BrandValidate())->goCheck('edit');
  76. if (BrandLogic::edit($post)) {
  77. return JsonServer::success('操作成功');
  78. }
  79. return JsonServer::error(BrandLogic::getError() ?: '操作失败');
  80. }
  81. return view('', [
  82. 'detail' => GoodsBrandModel::find($id),
  83. 'capital' => getCapital()
  84. ]);
  85. }
  86. /**
  87. * Notes: 删除
  88. * @author 段誉(2021/4/15 10:49)
  89. * @return \think\response\Json
  90. */
  91. public function del()
  92. {
  93. if ($this->request->isAjax()) {
  94. $id = $this->request->post('id');
  95. (new BrandValidate())->goCheck('del');
  96. if (BrandLogic::del($id)) {
  97. return JsonServer::success('操作成功');
  98. }
  99. return JsonServer::error(BrandLogic::getError() ?: '操作失败');
  100. }
  101. }
  102. /**
  103. * Notes: 切换状态
  104. * @author 段誉(2021/4/15 15:17)
  105. * @return \think\response\Json
  106. */
  107. public function switchStatus()
  108. {
  109. $post = $this->request->post();
  110. GoodsBrandModel::update(['is_show' => $post['is_show']], ['id' => $post['id']]);
  111. return JsonServer::success('操作成功');
  112. }
  113. }