| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | <?phpnamespace app\admin\controller\unishop;use app\common\controller\Backend;/** * 广告图管理 * * @icon fa fa-circle-o */class Ads extends Backend{    /**     * Ads模型对象     * @var \app\admin\model\unishop\Ads     */    protected $model = null;    public function _initialize()    {        parent::_initialize();        $this->model = new \app\admin\model\unishop\Ads;    }    /**     * 查看     */    public function index()    {        //设置过滤方法        $this->request->filter(['strip_tags']);        if ($this->request->isAjax()) {            //如果发送的来源是Selectpage,则转发到Selectpage            if ($this->request->request('keyField')) {                return $this->selectpage();            }            list($where, $sort, $order, $offset, $limit) = $this->buildparams();            $total = $this->model                ->where($where)                ->count();            $list = $this->model                ->with('product')                ->where($where)                ->order($sort, $order)                ->limit($offset, $limit)                ->select();            $list = collection($list)->toArray();            $result = array("total" => $total, "rows" => $list);            return json($result);        }        return $this->view->fetch();    }}
 |