songxingwei 2 years ago
parent
commit
5ad1812784
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/zoujingli/think-library/src/helper/PageHelper.php

+ 1 - 1
vendor/zoujingli/think-library/src/helper/PageHelper.php

@@ -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'>";