更新提现管理接口

This commit is contained in:
yaooo 2023-11-15 16:50:07 +08:00
parent 9bda876532
commit 5eea9476db

@ -40,7 +40,7 @@ class AccountLogController extends BaseLikeAdminController
if (!empty($params['start_time'])) {
$where[] = ['create_time', '>=', strtotime($params['start_time'])];
}
if (!empty($this->params['end_time'])) {
if (!empty($params['end_time'])) {
$where[] = ['create_time', '<=', strtotime($params['end_time'])];
}
$pageNo = !empty($params['page_no']) ? $params['page_no'] : 1;