This commit is contained in:
wanyongkang
2020-10-29 17:57:02 +08:00
parent e3a50a150a
commit 93825fa01a
4 changed files with 186 additions and 10 deletions

View File

@@ -5,7 +5,7 @@
* @Author: kangkang
* @Date: 2020-10-13 19:52:37
* @LastEditors: kangkang
* @LastEditTime: 2020-10-26 10:36:11
* @LastEditTime: 2020-10-29 15:12:44
*/
/*
* @Descripttion:
@@ -34,15 +34,6 @@ class IncomeCheck extends Controller
if (isset($_GET['PageIndex'])) {
$page = ($_GET['PageIndex'] - 1) * 50;
}
if (isset($_GET['ProductId'])) {
$where['ProductId'] = $_GET['ProductId'];
}
if (isset($_GET['PackageId'])) {
$where['PackageId'] = $_GET['PackageId'];
}
if (!empty($_GET['keyWord'])) {
$where['OrderNo'] = $_GET['keyWord'];
}
$check_model = new CheckModel;
$list = $check_model->getListPage([], '*', 'id desc', "$page,50");