From c8b3cb87d86bb6267ea1c961020c2ca98b16d994 Mon Sep 17 00:00:00 2001 From: sunke <18850253506@163.com> Date: Fri, 20 Mar 2020 18:12:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E4=BB=98=E9=99=90=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Admin/Controller/ToolController.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'];