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

Goods.php 4.1KB

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\activity_area;
  20. use app\common\basics\AdminBase;
  21. use app\common\server\JsonServer;
  22. use think\facade\View;
  23. use app\admin\logic\activity_area\AreaLogic;
  24. use app\admin\logic\activity_area\GoodsLogic;
  25. use app\admin\validate\activity_area\ActivityGoods;
  26. /**
  27. * Class Goods
  28. * @package app\admin\controller\activity_area
  29. */
  30. class Goods extends AdminBase
  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/13 6:58 下午
  40. */
  41. public function lists()
  42. {
  43. if ($this->request->isAjax()) {
  44. $get = $this->request->get();
  45. $list = GoodsLogic::lists($get);
  46. return JsonServer::success('获取成功', $list);
  47. }
  48. $activity_area = AreaLogic::getActivityAreaAll();
  49. $num = GoodsLogic::getNum();
  50. View::assign('num', $num);
  51. View::assign('activity_area', $activity_area);
  52. return View();
  53. }
  54. /**
  55. * @notes 活动专区商品审核
  56. * @return \think\response\Json|\think\response\View
  57. * @author suny
  58. * @date 2021/7/13 6:58 下午
  59. */
  60. public function audit()
  61. {
  62. if ($this->request->isAjax()) {
  63. $post = $this->request->post();
  64. (new ActivityGoods())->goCheck('audit', $post);
  65. $result = GoodsLogic::audit($post);
  66. if ($result) {
  67. return JsonServer::success('操作成功');
  68. }
  69. return JsonServer::error('操作失败');
  70. }
  71. $id = $this->request->get('id');
  72. $detail = GoodsLogic::getActivityAreaGoods($id);
  73. View::assign('detail', $detail);
  74. View::assign('id', $id);
  75. return View();
  76. }
  77. /**
  78. * @notes 违规操作
  79. * @return \think\response\Json|\think\response\View
  80. * @author suny
  81. * @date 2021/7/13 6:58 下午
  82. */
  83. public function violation()
  84. {
  85. if ($this->request->isAjax()) {
  86. $post = $this->request->post();
  87. $id = $post['id'];
  88. (new ActivityGoods())->goCheck('violation', $post);
  89. $result = GoodsLogic::violation($post);
  90. if ($result) {
  91. return JsonServer::success('操作成功');
  92. }
  93. return JsonServer::error('操作失败');
  94. }
  95. $id = $this->request->get('id');
  96. $detail = GoodsLogic::getActivityAreaGoods($id);
  97. View::assign('detail', $detail);
  98. View::assign('id', $id);
  99. return View();
  100. }
  101. /**
  102. * @notes 活动商品详情
  103. * @return \think\response\View
  104. * @author suny
  105. * @date 2021/7/13 6:58 下午
  106. */
  107. public function detail()
  108. {
  109. $get = $this->request->get();
  110. $detail = GoodsLogic::detail($get);
  111. View::assign('detail', $detail);
  112. return View();
  113. }
  114. }