Update Balance.php

This commit is contained in:
邹景立 2021-03-17 16:04:20 +08:00
parent 6c90a30c5b
commit be94d21b75

View File

@ -27,7 +27,7 @@ class Balance extends Auth
{ {
$query = $this->_query($this->table); $query = $this->_query($this->table);
$query->withoutField('deleted,create_by')->where(['uid' => $this->uuid, 'deleted' => 0]); $query->withoutField('deleted,create_by')->where(['uid' => $this->uuid, 'deleted' => 0]);
$result = $query->like('create_at#date')->order('id desc')->page(true, false, false, 15); $result = $query->like('create_at#date')->order('id desc')->page(true, false, false, 10);
$this->success('获取数据成功', $result); $this->success('获取数据成功', $result);
} }
} }