1
YM
2025-04-10 c4782840b8893dcc0bcf262153374237f40f6b9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
+-----------------------------------------------------------------------------------------------
* GouGuOPEN [ 左手研发,右手开源,未来可期!]
+-----------------------------------------------------------------------------------------------
* @Copyright (c) 2021~2024 http://www.gouguoa.com All rights reserved.
+-----------------------------------------------------------------------------------------------
* @Licensed 勾股OA,开源且可免费使用,但并不是自由软件,未经授权许可不能去除勾股OA的相关版权信息
+-----------------------------------------------------------------------------------------------
* @Author 勾股工作室 <hdm58@qq.com>
+-----------------------------------------------------------------------------------------------
*/
 
declare (strict_types = 1);
namespace app\home\model;
 
use think\Model;
use think\facade\Db;
use dateset\Dateset;
 
class AdminLog extends Model
{
    public function get_log_list($param = [])
    {
        $rows = empty($param['limit']) ? get_config('app.pages') : $param['limit'];
        $list = Db::name('AdminLog')
            ->field("a.id,a.uid,a.type,a.subject,a.action,a.create_time,u.name")
            ->alias('a')
            ->join('Admin u', 'a.uid = u.id')
            ->order('a.create_time desc')
            ->paginate(['list_rows'=> $rows])
            ->each(function($item, $key){
                $item['content'] = $item['name']. $item['action'] . '了' . $item['subject'];
                $item['times'] = (new Dateset())->time_trans($item['create_time']);
                return $item;
            });
        return $list;
    }
}