|
@@ -63,7 +63,7 @@ class PageHelper extends Helper
|
|
|
$config = ['list_rows' => $limit, 'query' => $get];
|
|
|
if (is_numeric($page)) $config['page'] = $page;
|
|
|
$data = ($paginate = $query->paginate($config, $this->getCount($query, $total)))->toArray();
|
|
|
-
|
|
|
+ //echo $query->getLastSql();
|
|
|
$result = ['page' => ['limit' => $data['per_page'], 'total' => $data['total'], 'pages' => $data['last_page'], 'current' => $data['current_page']], 'list' => $data['data']];
|
|
|
// 分页跳转参数
|
|
|
$select = "<select onchange='location.href=this.options[this.selectedIndex].value'>";
|