uid = Dever::load('passport/user')->check(false); if ($this->uid <= 0) { $this->uid = 1; } $this->checkLogin(); if ($this->uid) { $this->user = Dever::db('option/account')->find($this->uid); //$this->user['idcard'] = ''; } if ($this->user) { $this->user['uid'] = $this->user['id']; } } public function checkLogin() { if (!$this->uid || $this->uid <= 0) { Dever::alert('请先登录', -2); } } }