diff --git a/Application/Admin/Controller/ToolController.class.php b/Application/Admin/Controller/ToolController.class.php index c04110d61..e09f0ac5c 100644 --- a/Application/Admin/Controller/ToolController.class.php +++ b/Application/Admin/Controller/ToolController.class.php @@ -905,9 +905,10 @@ class ToolController extends ThinkController { } - public function limitPay($p=1) { + public function limitPay($page = 1) { $page = intval(I('get.p', 0)); $page = $page ? $page : 1; //默认显示第一页数据 + $row = intval(I('row', 0)); $row = empty($row) ? 10 : $row;//每页条数 $payType = $_REQUEST['pay_type'];