Ad.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\db\Query;
  5. /**
  6. *
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class Ad extends Backend
  11. {
  12. protected $noNeedLogin=['pos'];
  13. /**
  14. * Ad模型对象
  15. * @var \app\common\model\Ad
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\Ad;
  22. $this->view->assign('pos',\app\common\model\Ad::$pos);
  23. }
  24. public function index()
  25. {
  26. //设置过滤方法
  27. $this->request->filter(['strip_tags', 'trim']);
  28. if ($this->request->isAjax()) {
  29. //如果发送的来源是Selectpage,则转发到Selectpage
  30. if ($this->request->request('keyField')) {
  31. return $this->selectpage();
  32. }
  33. $this->relationSearch=true;
  34. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  35. $list = $this->model
  36. ->with(['admin','upload_admin'])
  37. ->where($where)
  38. ->where(function (Query $query){
  39. if($this->admin('is_sub')){
  40. $query->where('admin_id',$this->auth->id);
  41. }
  42. })
  43. ->order($sort, $order)
  44. ->paginate($limit);
  45. $result = array("total" => $list->total(), "rows" => $list->items());
  46. return json($result);
  47. }
  48. return $this->view->fetch();
  49. }
  50. public function import()
  51. {
  52. parent::import();
  53. }
  54. /**
  55. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  56. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  57. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  58. */
  59. public function pos(){
  60. return \app\common\model\Ad::$pos;
  61. }
  62. public function edit($ids = null)
  63. {
  64. $this->check($ids);
  65. return parent::edit($ids);
  66. }
  67. protected function check($ids){
  68. if($this->admin('is_sub')){
  69. $check=$this->model->where('id',$ids)->where('upload_admin_id',$this->auth->id)->find();
  70. if(!$check){
  71. $this->error('无权操作');
  72. }
  73. }
  74. }
  75. public function del($ids = "")
  76. {
  77. $this->check($ids);
  78. parent::del($ids);
  79. }
  80. }