Banner.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. /**
  5. * 轮播图管理
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Banner extends Backend
  10. {
  11. /**
  12. * Banner模型对象
  13. * @var \app\admin\model\Banner
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\Banner;
  20. $this->view->assign("typeList", $this->model->getTypeList());
  21. $this->view->assign("statusList", $this->model->getStatusList());
  22. }
  23. public function import()
  24. {
  25. parent::import();
  26. }
  27. /**
  28. * 查看
  29. */
  30. public function index()
  31. {
  32. //设置过滤方法
  33. $this->request->filter(['strip_tags', 'trim']);
  34. if ($this->request->isAjax()) {
  35. //如果发送的来源是Selectpage,则转发到Selectpage
  36. if ($this->request->request('keyField')) {
  37. return $this->selectpage();
  38. }
  39. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  40. $list = $this->model
  41. ->where($where)
  42. ->order($sort, $order)
  43. ->paginate($limit);
  44. $list2 = collection($list->items())->toArray();
  45. foreach($list2 as $key => &$val){
  46. if(!empty($val['url'])){
  47. $val['url'] = config('pay_notify_url').'/index/index/banner?id='.$val['url'];
  48. }
  49. }
  50. $result = array("total" => $list->total(), "rows" => $list2);
  51. return json($result);
  52. }
  53. return $this->view->fetch();
  54. }
  55. }