Commit da46e192 authored by clone's avatar clone

Merge branch '0308-3.1.2' of https://gitee.com/zwyjjc/tl_estate into 0308-3.1.2

parents f5c62c3b a38ad7f7
......@@ -30,9 +30,9 @@ class UAccountBalance extends Model
public function getBalanceList($params)
{
$pageNo = empty($params['pageNo']) ? 0 : $params['pageNo'];
$pageNo = empty($params['pageNo']) ? 1 : $params['pageNo'];
$pageSize = empty($params['pageSize']) ? 15 : $params['pageSize'];
$indexStart = $pageNo * $pageSize;
$indexStart = ($pageNo-1) * $pageSize;
$where_str = "";
if (!empty($params['create_time_start']) && !empty($params['create_time_end'])) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment