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

AdPosition.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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\AdPositionLogic;
  21. use app\admin\validate\decoration\AdPositionValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\server\JsonServer;
  24. class AdPosition extends AdminBase{
  25. /**
  26. * Notes:获取广告位列表
  27. * @return \think\response\Json|\think\response\View
  28. * @author: cjhao 2021/4/17 14:26
  29. */
  30. public function lists(){
  31. if($this->request->isAjax()){
  32. $get = $this->request->get();
  33. $list = AdPositionLogic::lists($get);
  34. return JsonServer::success('',$list);
  35. }
  36. return view();
  37. }
  38. /**
  39. * Notes:添加广告位
  40. * @return \think\response\Json
  41. * @author: cjhao 2021/4/17 14:49
  42. */
  43. public function add(){
  44. if($this->request->isAjax()){
  45. $post = $this->request->post();
  46. $post['del'] = 0;
  47. //验证数据
  48. (new AdPositionValidate())->goCheck('Add',$post);
  49. //添加操作
  50. $result = AdPositionLogic::add($post);
  51. if($result){
  52. return JsonServer::success('添加成功');
  53. }
  54. return JsonServer::error('添加失败');
  55. }
  56. return view();
  57. }
  58. /**
  59. * Notes:编辑广告位
  60. * @return \think\response\Json
  61. * @author: cjhao 2021/4/17 14:52
  62. */
  63. public function edit(){
  64. if($this->request->isAjax()){
  65. $post = $this->request->post();
  66. $post['del'] = 0;
  67. //验证数据
  68. (new AdPositionValidate())->goCheck('Add',$post);
  69. AdPositionLogic::edit($post);
  70. return JsonServer::success('修改成功');
  71. }
  72. $id = $this->request->get('id');
  73. $detail = AdPositionLogic::getPosition($id);
  74. return view('',['detail'=>$detail]);
  75. }
  76. /**
  77. * Notes:删除广告位
  78. * @return \think\response\Json
  79. * @author: cjhao 2021/4/19 11:21
  80. */
  81. public function del(){
  82. (new AdPositionValidate())->goCheck('del');
  83. $id = $this->request->post('id');
  84. AdPositionLogic::del($id);
  85. return JsonServer::success('删除成功');
  86. }
  87. public function swtichStatus(){
  88. (new AdPositionValidate())->goCheck('swtich');
  89. $post = $this->request->post();
  90. AdPositionLogic::swtichStatus($post);
  91. return JsonServer::success('操作成功');
  92. }
  93. }