截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

LogLogic.php 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\admin\logic\system;
  3. use app\common\basics\Logic;
  4. use app\common\model\system\SystemLog;
  5. class LogLogic extends Logic
  6. {
  7. public static function lists($get)
  8. {
  9. $where = [];
  10. if (isset($get['account']) && $get['account']) {
  11. $where[] = ['account', 'like', "%{$get['account']}%"];
  12. }
  13. if (isset($get['uri']) && $get['uri']) {
  14. $where[] = ['uri', 'like', "%{$get['uri']}%"];
  15. }
  16. if (isset($get['type']) && $get['type']) {
  17. $where[] = ['type', '=', strtolower($get['type'])];
  18. }
  19. if (isset($get['ip']) && $get['ip']) {
  20. $where[] = ['ip', 'like', "%{$get['ip']}%"];
  21. }
  22. if (isset($get['start_time']) && !empty($get['start_time'])) {
  23. $where[] = ['create_time', '>=', strtotime($get['start_time'])];
  24. }
  25. if (isset($get['end_time']) && !empty($get['end_time'])) {
  26. $where[] = ['create_time', '<=', strtotime($get['end_time'])];
  27. }
  28. $lists = SystemLog::where($where)
  29. ->page($get['page'], $get['limit'])
  30. ->order(['id' => 'desc'])
  31. ->select()
  32. ->toArray();
  33. foreach ($lists as $k => $v) {
  34. // $lists[$k]['create_time_str'] = date('Y-m-d H:i:s', $v['create_time']);
  35. $lists[$k]['param'] = str_replace([" ", " ", "\t", "\n", "\r"], '', $v['param']);
  36. }
  37. $count = SystemLog::where($where)->count();
  38. return ['lists' => $lists, 'count' => $count];
  39. }
  40. }