tp6框架的销售统计系统

Base.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace app\controller;
  3. use app\BaseController;
  4. use think\App;
  5. use think\facade\Db;
  6. class Base extends BaseController
  7. {
  8. protected $uid;
  9. protected $username;
  10. protected $limit;
  11. public function __construct(App $app)
  12. {
  13. parent::__construct($app);
  14. // //判断是否登陆
  15. if (!session('?uid')) {
  16. $this->error('您还没有登录, 请登录', '/login');
  17. }
  18. // // 登录用户信息
  19. $this->uid = session('uid');
  20. $this->username = session('username');
  21. $this->limit = $this->request->cookie('limit') ? : 50;
  22. //记录日志
  23. $this->addLog();
  24. }
  25. /**
  26. * 记录日志
  27. */
  28. private function addLog()
  29. {
  30. $data = [];
  31. $data['querystring'] = $this->app->request->query()?'?'.$this->app->request->query():'';
  32. $data['c'] = $this->app->request->controller();
  33. $data['a'] = $this->app->request->action();
  34. $data['userid'] = $this->uid;
  35. $data['username'] = $this->username;
  36. $data['ip'] = $this->app->request->ip();
  37. $data['time'] = time();
  38. $arr = ['Index/index','SysLog/index'];
  39. if (!in_array($data['c'].'/'.$data['a'], $arr)) {
  40. Db::name('sys_log')->insert($data);
  41. }
  42. }
  43. }