mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
完善登录登出操作
This commit is contained in:
parent
f674acc31c
commit
335d3c279b
@ -1,17 +1,26 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace app\admin\controller;
|
namespace app\admin\controller;
|
||||||
|
|
||||||
use think\Controller;
|
use controller\BasicAdmin;
|
||||||
use think\Db;
|
use think\Db;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统登录控制器
|
* 系统登录控制器
|
||||||
* Class Login
|
*
|
||||||
* @package app\admin\controller
|
* @package app\admin\controller
|
||||||
* @author Anyon <zoujingli@qq.com>
|
* @author Anyon <zoujingli@qq.com>
|
||||||
* @date 2017/02/10 13:59
|
* @date 2017/02/10 13:59
|
||||||
*/
|
*/
|
||||||
class Login extends Controller {
|
class Login extends BasicAdmin {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 控制器基础方法
|
||||||
|
*/
|
||||||
|
public function _initialize() {
|
||||||
|
if ($this->isLogin() && $this->request->action() !== 'out') {
|
||||||
|
$this->redirect('@admin');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户登录
|
* 用户登录
|
||||||
|
@ -4,16 +4,33 @@ namespace controller;
|
|||||||
|
|
||||||
use think\Controller;
|
use think\Controller;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 后台权限基础控制器
|
||||||
|
*
|
||||||
|
* @package controller
|
||||||
|
* @author Anyon <zoujingli@qq.com>
|
||||||
|
* @date 2017/02/13 14:24
|
||||||
|
*/
|
||||||
class BasicAdmin extends Controller {
|
class BasicAdmin extends Controller {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 后台权限控制初始化方法
|
||||||
|
*/
|
||||||
public function _initialize() {
|
public function _initialize() {
|
||||||
parent::_initialize();
|
|
||||||
if (!$this->isLogin()) {
|
if (!$this->isLogin()) {
|
||||||
$this->redirect('@admin/login');
|
$this->redirect('@admin/login');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断用户是否登录
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
public function isLogin() {
|
public function isLogin() {
|
||||||
return false;
|
$user = session('user');
|
||||||
|
if (empty($user) || empty($user['id'])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -161,25 +161,15 @@ define(['zeroclipboard', 'jquery', 'layui'], function (ZeroClipboard) {
|
|||||||
*/
|
*/
|
||||||
msg.prototype.auto = function (data, time) {
|
msg.prototype.auto = function (data, time) {
|
||||||
var self = this;
|
var self = this;
|
||||||
if (data.code === 1) {
|
if (parseInt(data.code) === 1) {
|
||||||
self.success(data.msg, time, function () {
|
return self.success(data.msg, time, function () {
|
||||||
if (data.url === 'back') {
|
alert(data.url);
|
||||||
window.history.back();
|
!!data.url ? (window.location.href = data.url) : $.form.reload();
|
||||||
} else if (data.url === 'reload') {
|
|
||||||
$.form.reload();
|
|
||||||
} else if (data.url) {
|
|
||||||
window.location.href = data.url;
|
|
||||||
} else {
|
|
||||||
$.form.reload();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
self.error(data.msg, 3000, function () {
|
|
||||||
if (data.url) {
|
|
||||||
window.location.href = data.url;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
self.error(data.msg, 3000, function () {
|
||||||
|
!!data.url && (window.location.href = data.url);
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user