66 lines
1.5 KiB
PHP
66 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace app\admin\lists\article;
|
|
|
|
|
|
use app\admin\lists\BaseAdminDataLists;
|
|
use app\common\model\article\ArticleComment;
|
|
use app\common\lists\ListsSearchInterface;
|
|
|
|
|
|
/**
|
|
* 评论列表
|
|
* Class ArticleCommentLists
|
|
* @package app\admin\listsarticle
|
|
*/
|
|
class ArticleCommentLists extends BaseAdminDataLists implements ListsSearchInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @notes 设置搜索条件
|
|
* @return \string[][]
|
|
* @author likeadmin
|
|
* @date 2024/02/18 15:03
|
|
*/
|
|
public function setSearch(): array
|
|
{
|
|
return [
|
|
'=' => ['article_id', 'state', 'comment_user'],
|
|
];
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取评论列表
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @author likeadmin
|
|
* @date 2024/02/18 15:03
|
|
*/
|
|
public function lists(): array
|
|
{
|
|
return ArticleComment::where($this->searchWhere)
|
|
->with(['title'])
|
|
->field(['id', 'pre_id', 'content', 'article_id', 'state', 'comment_user'])
|
|
->limit($this->limitOffset, $this->limitLength)
|
|
->order(['id' => 'desc'])
|
|
->select()
|
|
->toArray();
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取评论数量
|
|
* @return int
|
|
* @author likeadmin
|
|
* @date 2024/02/18 15:03
|
|
*/
|
|
public function count(): int
|
|
{
|
|
return ArticleComment::where($this->searchWhere)->count();
|
|
}
|
|
|
|
} |