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;