first commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/**
|
||||
* @copyright Copyright (c) 2023-2024 美天智能科技
|
||||
* @author 李志强
|
||||
* @link http://www.meteteme.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
namespace app\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class Comment extends Model
|
||||
{
|
||||
public function get_list($param = [])
|
||||
{
|
||||
$where = array();
|
||||
$where['a.module'] = $param['m'];
|
||||
$where['a.topic_id'] = $param['tid'];
|
||||
$where['a.delete_time'] = 0;
|
||||
// $rows = empty($param['limit']) ? get_config('app.pages') : $param['limit'];
|
||||
$content = \think\facade\Db::name('Comment')
|
||||
->field('a.*,u.name,u.thumb,pu.name as pname')
|
||||
->alias('a')
|
||||
->join('Admin u', 'u.id = a.admin_id')
|
||||
->leftjoin('Admin pu', 'pu.id = a.padmin_id')
|
||||
->order('a.create_time desc')
|
||||
->where($where)
|
||||
->select()->toArray();
|
||||
foreach ($content as $k => &$v) {
|
||||
$v['times'] = time_trans($v['create_time']);
|
||||
$v['create_time'] = date('Y-m-d H:i:s', $v['create_time']);
|
||||
if ($v['update_time'] > 0) {
|
||||
$v['update_time'] = ',最后编辑时间:' . time_trans($v['update_time']);
|
||||
} else {
|
||||
$v['update_time'] = '';
|
||||
}
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user