后台文件修改,修复搜索时分页链接会没有参数的情况
This commit is contained in:
@@ -19,7 +19,9 @@ class Client extends Admin {
|
||||
|
||||
|
||||
public function index(){
|
||||
$list = $this->model->paginate(25);
|
||||
$list = $this->model->paginate(25, false, array(
|
||||
'query' => $this->request->param()
|
||||
));
|
||||
$data = array(
|
||||
'list' => $list,
|
||||
'page' => $list->render()
|
||||
|
||||
Reference in New Issue
Block a user