17 lines
627 B
PHP
17 lines
627 B
PHP
<?php
|
||
// +------------------------------------------------+
|
||
// |http://www.cjango.com |
|
||
// +------------------------------------------------+
|
||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||
// +------------------------------------------------+
|
||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||
// +------------------------------------------------+
|
||
use think\Request;
|
||
|
||
return [
|
||
'type' => '\tools\Pager',
|
||
'list_rows' => Request::instance()->get('pageSize', 15),
|
||
'var_page' => 'page',
|
||
'query' => Request::instance()->get(),
|
||
];
|