| | |
| | | { |
| | | // 获取文章数据 |
| | | $model = new Article; |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum']); |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum'],0); |
| | | return $articleList->isEmpty() ? [] : $articleList->toArray()['data']; |
| | | } |
| | | |
| | |
| | | { |
| | | // 获取头条数据 |
| | | $model = new Article; |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum']); |
| | | $articleList = $model->getList($item['params']['auto']['category'], $item['params']['auto']['showNum'],0); |
| | | return $articleList->isEmpty() ? [] : $articleList->toArray()['data']; |
| | | } |
| | | |