[dev]更新系统权限模块

This commit is contained in:
邹景立 2017-03-15 12:51:27 +08:00
parent b275e6fcb4
commit 908b348505
2 changed files with 7 additions and 1 deletions

View File

@ -89,6 +89,9 @@ class Index extends BasicAdmin {
* 修改密码
*/
public function pass() {
if (in_array('10000', explode(',', $this->request->post('id')))) {
$this->error('系统超级账号禁止操作!');
}
if (intval($this->request->request('id')) !== intval(session('user.id'))) {
$this->error('访问异常!');
}
@ -116,6 +119,9 @@ class Index extends BasicAdmin {
* 修改资料
*/
public function info() {
if (in_array('10000', explode(',', $this->request->post('id')))) {
$this->error('系统超级账号禁止操作!');
}
if (intval($this->request->request('id')) === intval(session('user.id'))) {
return $this->_form('SystemUser', 'user/form');
} else {

View File

@ -34,7 +34,7 @@ class User extends BasicAdmin {
protected $table = 'SystemUser';
public function index() {
$this->title = '用户管理';
$this->title = '系统用户管理';
$db = Db::name($this->table)->where('is_deleted', '0');
parent::_list($db);
}