截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Goods.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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\shop\controller\activity_area;
  20. use app\common\basics\ShopBase;
  21. use app\common\server\JsonServer;
  22. use think\facade\View;
  23. use app\shop\logic\activity_area\AreaLogic;
  24. use app\shop\logic\activity_area\GoodsLogic;
  25. use app\shop\validate\activity_area\ActivityGoodsValidate;
  26. /**
  27. * Class Goods
  28. * @package app\shop\controller\activity_area
  29. */
  30. class Goods extends ShopBase
  31. {
  32. /**
  33. * @notes 活动专区商品列表
  34. * @return \think\response\Json|\think\response\View
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @author suny
  39. * @date 2021/7/14 10:12 上午
  40. */
  41. public function lists()
  42. {
  43. $shop_id = $this->shop_id;
  44. if ($this->request->isAjax()) {
  45. $get = $this->request->get();
  46. $get['shop_id'] = $shop_id;
  47. $list = GoodsLogic::lists($get);
  48. return JsonServer::success('获取成功', $list);
  49. }
  50. $activity_area = AreaLogic::getActivityAreaAll();
  51. $num = GoodsLogic::getNum($shop_id);
  52. View::assign('num', $num);
  53. View::assign('activity_area', $activity_area);
  54. return View();
  55. }
  56. /**
  57. * @notes 新增活动专区商品
  58. * @return \think\response\Json|\think\response\View
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\DbException
  61. * @throws \think\db\exception\ModelNotFoundException
  62. * @author suny
  63. * @date 2021/7/14 10:12 上午
  64. */
  65. public function add()
  66. {
  67. if ($this->request->isAjax()) {
  68. $post = $this->request->post();
  69. $shop_id = $this->shop_id;
  70. $post['shop_id'] = $shop_id;
  71. $post['del'] = 0;
  72. (new ActivityGoodsValidate())->goCheck('add', $post);
  73. GoodsLogic::add($post);
  74. return JsonServer::success('添加成功');
  75. }
  76. $activity_area = AreaLogic::getActivityAreaAll();
  77. View::assign('activity_area', $activity_area);
  78. return View();
  79. }
  80. /**
  81. * @notes 编辑活动商品
  82. * @return \think\response\Json|\think\response\View
  83. * @author suny
  84. * @date 2021/7/14 10:12 上午
  85. */
  86. public function edit()
  87. {
  88. if ($this->request->isAjax()) {
  89. $post = $this->request->post();
  90. $post['del'] = 0;
  91. (new ActivityGoodsValidate())->goCheck('edit', $post);
  92. $result = GoodsLogic::edit($post);
  93. if ($result) {
  94. return JsonServer::success('编辑成功');
  95. }
  96. return JsonServer::error('编辑失败');
  97. }
  98. $goods_id = $this->request->get('goods_id');
  99. $activity_id = $this->request->get('activity_id');
  100. View::assign('activity_list', GoodsLogic::getActivityList());
  101. View::assign('info', GoodsLogic::getActivityGoods($goods_id, $activity_id));
  102. return View();
  103. }
  104. /**
  105. * @notes 删除活动商品
  106. * @return \think\response\Json
  107. * @author suny
  108. * @date 2021/7/14 10:12 上午
  109. */
  110. public function del()
  111. {
  112. $id = $this->request->post('id', '', 'intval');
  113. $result = GoodsLogic::del($id);
  114. if ($result == true) {
  115. return JsonServer::success('删除成功');
  116. }
  117. return JsonServer::error('删除失败');
  118. }
  119. }