From ffdaf64f8c961dc75e882e994c45dbef5dc98f29 Mon Sep 17 00:00:00 2001 From: wanyongkang <937888580@qq.com> Date: Sat, 14 Nov 2020 11:36:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=9F=E5=90=8E=E5=8F=B0=E8=B4=A2=E5=8A=A1?= =?UTF-8?q?=E8=A1=A5=E9=81=97=E6=8D=A2=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/order/controller/FinanceCheck.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/order/controller/FinanceCheck.php b/app/order/controller/FinanceCheck.php index 043c5a9..5d8bfc1 100644 --- a/app/order/controller/FinanceCheck.php +++ b/app/order/controller/FinanceCheck.php @@ -5,7 +5,7 @@ * @Author: kangkang * @Date: 2020-10-13 19:52:37 * @LastEditors: kangkang - * @LastEditTime: 2020-11-02 11:35:58 + * @LastEditTime: 2020-11-14 11:36:10 */ /* * @Descripttion: @@ -32,8 +32,8 @@ class FinanceCheck extends Controller public function getList() { $page = 0; - if (isset($_GET['PageIndex'])) { - $page = ($_GET['PageIndex'] - 1) * 50; + if (isset($_GET['page'])) { + $page = ($_GET['page'] - 1) * 50; } $finance_model = new FinanceModel; @@ -108,8 +108,8 @@ class FinanceCheck extends Controller public function buyiList() { $page = 0; - if (isset($_GET['PageIndex'])) { - $page = ($_GET['PageIndex'] - 1) * 50; + if (isset($_GET['page'])) { + $page = ($_GET['page'] - 1) * 50; } $finance_model = new FinanceOperationModel;