mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改后台管理
This commit is contained in:
parent
1e6944127c
commit
b3334afa15
@ -57,7 +57,7 @@ class Index extends Controller
|
||||
public function info($id = 0)
|
||||
{
|
||||
$this->_applyFormToken();
|
||||
if (intval($this->app->session->get('user.id')) === intval($id)) {
|
||||
if (AdminService::instance()->getUserId() === intval($id)) {
|
||||
$this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
|
||||
} else {
|
||||
$this->error('只能修改登录用户的资料!');
|
||||
@ -75,7 +75,7 @@ class Index extends Controller
|
||||
public function pass($id = 0)
|
||||
{
|
||||
$this->_applyFormToken();
|
||||
if (intval($this->app->session->get('user.id')) !== intval($id)) {
|
||||
if (AdminService::instance()->getUserId() !== intval($id)) {
|
||||
$this->error('只能修改当前用户的密码!');
|
||||
}
|
||||
if ($this->app->request->isGet()) {
|
||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
// This file is automatically generated at:2020-06-16 16:12:12
|
||||
// This file is automatically generated at:2020-06-17 13:50:59
|
||||
declare (strict_types = 1);
|
||||
return array (
|
||||
0 => 'think\\app\\Service',
|
||||
|
Loading…
x
Reference in New Issue
Block a user