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

Ad.php 4.4KB

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\decoration;
  20. use app\admin\logic\decoration\AdLogic;
  21. use app\admin\validate\decoration\AdValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\enum\AdEnum;
  24. use app\common\server\JsonServer;
  25. class Ad extends AdminBase{
  26. /**
  27. * Notes:获取广告列表
  28. * @return \think\response\Json|\think\response\View
  29. * @author: cjhao 2021/4/20 11:00
  30. */
  31. public function lists(){
  32. if($this->request->isAjax()){
  33. $get = $this->request->get();
  34. $list = AdLogic::lists($get);
  35. return JsonServer::success('',$list);
  36. }
  37. return view();
  38. }
  39. /**
  40. * Notes:添加广告
  41. * @return \think\response\Json|\think\response\View
  42. * @author: cjhao 2021/4/20 11:00
  43. */
  44. public function add(){
  45. if($this->request->isAjax()){
  46. $post = $this->request->post();
  47. $post['del'] = 0;
  48. (new AdValidate())->goCheck('Add',$post);
  49. $result = AdLogic::add($post);
  50. if($result){
  51. return JsonServer::success('添加成功');
  52. }
  53. return JsonServer::error('添加失败');
  54. }
  55. $terminal = $this->request->get('terminal');
  56. $position_list = AdLogic::getPositionList($terminal);
  57. $category_list = AdLogic::getCategoryList();
  58. $link_page = AdEnum::getLinkPage($terminal);
  59. return view('',['position_list'=>$position_list,'category_list'=>$category_list,'link_page'=>$link_page]);
  60. }
  61. /**
  62. * Notes:编辑广告
  63. * @return \think\response\Json|\think\response\View
  64. * @author: cjhao 2021/4/20 11:01
  65. */
  66. public function edit(){
  67. if($this->request->isAjax()){
  68. $post = $this->request->post();
  69. $post['del'] = 0;
  70. (new AdValidate())->goCheck('edit',$post);
  71. AdLogic::edit($post);
  72. return JsonServer::success('修改成功');
  73. }
  74. $id = $this->request->get('id');
  75. $detail = AdLogic::getAd($id);
  76. $position_list = AdLogic::getPositionList($detail['terminal']);
  77. $category_list = AdLogic::getCategoryList();
  78. $link_page = AdEnum::getLinkPage($detail['terminal']);
  79. return view('',['detail'=>$detail,'position_list'=>$position_list,'category_list'=>$category_list,'link_page'=>$link_page]);
  80. }
  81. /**
  82. * Notes:删除广告
  83. * @return \think\response\Json
  84. * @author: cjhao 2021/4/20 11:01
  85. */
  86. public function del(){
  87. $id = $this->request->post('id');
  88. (new AdValidate())->goCheck('del');
  89. ADLogic::del($id);
  90. return JsonServer::success('删除成功');
  91. }
  92. /**
  93. * Notes:切换广告状态
  94. * @return \think\response\Json
  95. * @author: cjhao 2021/4/20 11:01
  96. */
  97. public function swtichStatus(){
  98. (new AdValidate())->goCheck('swtich');
  99. $post = $this->request->post();
  100. ADLogic::swtichStatus($post);
  101. return JsonServer::success('操作成功');
  102. }
  103. /**
  104. * Notes:获取广告位列表
  105. * @return \think\response\Json
  106. * @author: cjhao 2021/4/22 11:09
  107. */
  108. public function getPositionList(){
  109. $terminal = $this->request->get('terminal');
  110. $list = ADLogic::getPositionList($terminal);
  111. return JsonServer::success('',$list->toArray());
  112. }
  113. }