mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[dev]更新系统权限模块
This commit is contained in:
parent
b275e6fcb4
commit
908b348505
@ -89,6 +89,9 @@ class Index extends BasicAdmin {
|
|||||||
* 修改密码
|
* 修改密码
|
||||||
*/
|
*/
|
||||||
public function pass() {
|
public function pass() {
|
||||||
|
if (in_array('10000', explode(',', $this->request->post('id')))) {
|
||||||
|
$this->error('系统超级账号禁止操作!');
|
||||||
|
}
|
||||||
if (intval($this->request->request('id')) !== intval(session('user.id'))) {
|
if (intval($this->request->request('id')) !== intval(session('user.id'))) {
|
||||||
$this->error('访问异常!');
|
$this->error('访问异常!');
|
||||||
}
|
}
|
||||||
@ -116,6 +119,9 @@ class Index extends BasicAdmin {
|
|||||||
* 修改资料
|
* 修改资料
|
||||||
*/
|
*/
|
||||||
public function info() {
|
public function info() {
|
||||||
|
if (in_array('10000', explode(',', $this->request->post('id')))) {
|
||||||
|
$this->error('系统超级账号禁止操作!');
|
||||||
|
}
|
||||||
if (intval($this->request->request('id')) === intval(session('user.id'))) {
|
if (intval($this->request->request('id')) === intval(session('user.id'))) {
|
||||||
return $this->_form('SystemUser', 'user/form');
|
return $this->_form('SystemUser', 'user/form');
|
||||||
} else {
|
} else {
|
||||||
|
@ -34,7 +34,7 @@ class User extends BasicAdmin {
|
|||||||
protected $table = 'SystemUser';
|
protected $table = 'SystemUser';
|
||||||
|
|
||||||
public function index() {
|
public function index() {
|
||||||
$this->title = '用户管理';
|
$this->title = '系统用户管理';
|
||||||
$db = Db::name($this->table)->where('is_deleted', '0');
|
$db = Db::name($this->table)->where('is_deleted', '0');
|
||||||
parent::_list($db);
|
parent::_list($db);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user