1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\admin\controller;
- use app\common\controller\Backend;
- /**
- * 轮播图管理
- *
- * @icon fa fa-circle-o
- */
- class Banner extends Backend
- {
-
- /**
- * Banner模型对象
- * @var \app\admin\model\Banner
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\Banner;
- $this->view->assign("typeList", $this->model->getTypeList());
- $this->view->assign("statusList", $this->model->getStatusList());
- }
- public function import()
- {
- parent::import();
- }
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- $list2 = collection($list->items())->toArray();
- foreach($list2 as $key => &$val){
- if(!empty($val['url'])){
- $val['url'] = config('pay_notify_url').'/index/index/banner?id='.$val['url'];
- }
- }
- $result = array("total" => $list->total(), "rows" => $list2);
- return json($result);
- }
- return $this->view->fetch();
- }
-
- }
|