Browse Source

修复分页查询BUG

pull/5/head
xiaoz 6 years ago
parent
commit
02bb5f4927
  1. 11
      README.md
  2. 16
      functions/class/class.admin.php

11
README.md

@ -38,14 +38,13 @@ location ~* \.(db3)$ { @@ -38,14 +38,13 @@ location ~* \.(db3)$ {
![](https://imgurl.org/upload/1804/3ccc55eeb47965c3.png)
### 联系我
* Blog:[https://www.xiaoz.me/](https://www.xiaoz.me/)
* QQ:337003006
### 鸣谢
ImgURL的诞生离不开以下开源项目。
* LayUI: [https://github.com/sentsin/layui](https://github.com/sentsin/layui)
* class.upload.php: [https://github.com/verot/class.upload.php](https://github.com/verot/class.upload.php)
* clipBoard.js: [https://github.com/baixuexiyang/clipBoard.js](https://github.com/baixuexiyang/clipBoard.js)
* clipBoard.js: [https://github.com/baixuexiyang/clipBoard.js](https://github.com/baixuexiyang/clipBoard.js)
### 联系我
* Blog:[https://www.xiaoz.me/](https://www.xiaoz.me/)
* QQ:337003006

16
functions/class/class.admin.php

@ -31,13 +31,15 @@ @@ -31,13 +31,15 @@
//分页计算
$start = ($page - 1) * 12;
$end = $page * 12;
//$end = $page * 12;
if(($page == '') || (!isset($page))) {
$page = 1;
}
//要查询的条数
$num = 12;
//判断类型
switch ($type) {
case 'user':
@ -45,17 +47,17 @@ @@ -45,17 +47,17 @@
$datas = $database->select("imginfo", "*", [
"dir" => $config['userdir'],
"ORDER" => ["id" => "DESC"],
"LIMIT" => [$start,$end]
"LIMIT" => [$start,$num]
]);
//var_dump( $database->log() );
//exit;
// var_dump( $database->log() );
// exit;
return $datas;
break;
case 'admin':
$datas = $database->select("imginfo", "*", [
"dir" => $config['admindir'],
"ORDER" => ["id" => "DESC"],
"LIMIT" => [$start,$end]
"LIMIT" => [$start,$num]
]);
return $datas;
break;
@ -63,7 +65,7 @@ @@ -63,7 +65,7 @@
$datas = $database->select("imginfo", "*", [
"level" => 3,
"ORDER" => ["id" => "DESC"],
"LIMIT" => [$start,$end]
"LIMIT" => [$start,$num]
]);
return $datas;
break;

Loading…
Cancel
Save