multi-store/app/admin/lists/user/UserFeedbackLists.php
2024-05-30 21:37:55 +08:00

70 lines
1.7 KiB
PHP

<?php
namespace app\admin\lists\user;
use app\admin\lists\BaseAdminDataLists;
use app\common\lists\ListsSearchInterface;
use app\common\model\user\User;
use app\common\model\user\UserFeedback;
/**
* 用户反馈表列表
* Class UserFeedbackLists
* @package app\admin\listsuser
*/
class UserFeedbackLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/05/13 16:56
*/
public function setSearch(): array
{
return [
'=' => ['uid'],
'%like%' => ['name', 'contact'],
];
}
/**
* @notes 获取用户反馈表列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/05/13 16:56
*/
public function lists(): array
{
return UserFeedback::where($this->searchWhere)
->field(['id', 'uid', 'content', 'images', 'name', 'contact'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$user = User::field('nickname')->where('id',$data['uid'])->findOrEmpty();
$data['user_name'] = !$user->isEmpty() ? $user['nickname'] : '';
})
->toArray();
}
/**
* @notes 获取用户反馈表数量
* @return int
* @author likeadmin
* @date 2024/05/13 16:56
*/
public function count(): int
{
return UserFeedback::where($this->searchWhere)->count();
}
}