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

Area.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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\validate\activity_area\AreaValidate;
  24. use app\admin\logic\activity_area\AreaLogic;
  25. use app\admin\logic\activity_area\GoodsLogic;
  26. /**
  27. * Class Area
  28. * @package app\admin\controller\activity_area
  29. */
  30. class Area extends AdminBase
  31. {
  32. /**
  33. * @notes 活动专区列表
  34. * @return \think\response\Json|\think\response\View
  35. * @author suny
  36. * @date 2021/7/13 6:57 下午
  37. */
  38. public function lists()
  39. {
  40. if ($this->request->isAjax()) {
  41. $get = $this->request->get();
  42. $lists = AreaLogic::lists($get);
  43. return JsonServer::success('获取成功', $lists);
  44. }
  45. return View();
  46. }
  47. /**
  48. * @notes 新增活动专区
  49. * @return \think\response\Json|\think\response\View
  50. * @author suny
  51. * @date 2021/7/13 6:57 下午
  52. */
  53. public function add()
  54. {
  55. if ($this->request->isAjax()) {
  56. $post = $this->request->post();
  57. $post['del'] = 0;
  58. (new AreaValidate())->goCheck('add', $post);
  59. AreaLogic::add($post);
  60. return JsonServer::success('添加成功');
  61. }
  62. return View();
  63. }
  64. /**
  65. * @notes 编辑活动专区
  66. * @return \think\response\Json|\think\response\View
  67. * @author suny
  68. * @date 2021/7/13 6:57 下午
  69. */
  70. public function edit()
  71. {
  72. if ($this->request->isAjax()) {
  73. $post = $this->request->post();
  74. $post['del'] = 0;
  75. $post['status'] = isset($post['status']) ? 1 : 0;
  76. (new AreaValidate())->goCheck('edit', $post);
  77. AreaLogic::edit($post);
  78. return JsonServer::success('修改成功');
  79. }
  80. $id = $this->request->get('id');
  81. $detail = AreaLogic::getActivityArea($id);
  82. View::assign('detail', $detail);
  83. return View();
  84. }
  85. /**
  86. * @notes 删除活动专区
  87. * @return \think\response\Json
  88. * @author suny
  89. * @date 2021/7/13 6:57 下午
  90. */
  91. public function del()
  92. {
  93. $id = $this->request->post('id');
  94. (new AreaValidate())->goCheck('del', ['id' => $id]);
  95. return JsonServer::success('删除成功', [AreaLogic::del($id)]);
  96. }
  97. }