2025-03-12 10:47:34 +08:00

14 lines
439 B
Plaintext

/**
* 主页数据接口
* @param array $where
* @return array
* @date {%DATE%}
*/
public function getCrudListIndex(array $where = [])
{
[$page, $limit] = $this->getPageValue();
$model = $this->dao->searchCrudModel($where, '{%FIELD%}', '{%KEY%} desc', {%WITH%});
return ['count' => $model->count(), 'list' => $model->page($page ?: 1, $limit ?: 10)->select()->toArray()];
}