model = model('CardDayCollect'); } /** * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个方法 * 因此在当前控制器中可不用编写增删改查的代码,如果需要自己控制这部分逻辑 * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 */ public function index() { $aid = $this->request->get('id'); //设置过滤方法 $this->request->filter(['strip_tags']); if ($this->request->isAjax()) { //如果发送的来源是Selectpage,则转发到Selectpage if ($this->request->request('pkey_name')) { return $this->selectpage(); } list($where, $sort, $order, $offset, $limit) = $this->buildparams(); $channelId = $this->group < 3 ? 0 : $this->auth->id; $total = $this->model ->where('c_id', $aid) ->where('channel_id', $channelId) ->count(); $list = $this->model ->where('c_id', $aid) ->where('channel_id', $channelId) ->order('createdate', 'desc') ->limit($offset, $limit) ->select(); $result = array("total" => $total, "rows" => $list); return json($result); } $this->assignconfig('id', $aid); return $this->view->fetch(); } }