mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改系统模式判定
This commit is contained in:
parent
57b6a00437
commit
50d3420043
@ -36,13 +36,14 @@ class Index extends Controller
|
|||||||
*/
|
*/
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
if ($this->app->isDebug()) {
|
/*! 根据运行模式刷新权限 */
|
||||||
AdminService::instance()->apply(true);
|
$clear = $this->app->isDebug();
|
||||||
} else {
|
AdminService::instance()->apply($clear);
|
||||||
AdminService::instance()->apply(false);
|
/*! 读取当前权限菜单树 */
|
||||||
}
|
|
||||||
$this->menus = MenuService::instance()->getTree();
|
$this->menus = MenuService::instance()->getTree();
|
||||||
|
/*! 判断用户是否已经登录 */
|
||||||
$this->login = AdminService::instance()->isLogin();
|
$this->login = AdminService::instance()->isLogin();
|
||||||
|
/*! 菜单为空并且未登录跳转到登录页 */
|
||||||
if (empty($this->menus) && empty($this->login)) {
|
if (empty($this->menus) && empty($this->login)) {
|
||||||
$this->redirect(sysuri('admin/login/index'));
|
$this->redirect(sysuri('admin/login/index'));
|
||||||
} else {
|
} else {
|
||||||
|
@ -62,7 +62,7 @@ class Login extends Controller
|
|||||||
if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
|
if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
|
||||||
$this->error('图形验证码验证失败,请重新输入!');
|
$this->error('图形验证码验证失败,请重新输入!');
|
||||||
}
|
}
|
||||||
// 用户信息验证
|
/*! 用户信息验证 */
|
||||||
$map = ['username' => $data['username'], 'is_deleted' => '0'];
|
$map = ['username' => $data['username'], 'is_deleted' => '0'];
|
||||||
$user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find();
|
$user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find();
|
||||||
if (empty($user)) {
|
if (empty($user)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user