解决列表定义中linux下无法使用格式化函数的bug

This commit is contained in:
2020-04-16 15:57:44 +08:00
parent 2e9868764f
commit 521a678a22
4 changed files with 18 additions and 5 deletions

View File

@@ -45,9 +45,7 @@ class Content extends Base {
$map[] = ['title', 'LIKE', '%'.$param['keyword'].'%'];
}
$list = $this->model->where($map)->order($order)->paginate($this->modelInfo['list_row'], false, array(
'query' => $this->request->param(),
));
$list = $this->model->where($map)->order($order)->paginate($this->request->pageConfig);
$this->data = array(
'grid' => $this->modelInfo['grid_list'],