1
2
3
4
5
6
7
8
9
10
11
12
13
| /**
| * 主页数据接口
| * @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()];
| }
|
|