mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改测试环境判断
This commit is contained in:
parent
4dd297921c
commit
a95833c81f
@ -42,10 +42,10 @@ class Login extends Controller
|
|||||||
if (NodeService::islogin()) {
|
if (NodeService::islogin()) {
|
||||||
$this->redirect('@admin');
|
$this->redirect('@admin');
|
||||||
} else {
|
} else {
|
||||||
$this->domain = Request::host(true);
|
|
||||||
$this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']) or stripos($this->domain, 'thinkadmin.top') !== false;
|
|
||||||
if (!($this->loginskey = session('loginskey'))) session('loginskey', $this->loginskey = uniqid());
|
|
||||||
$this->title = '系统登录';
|
$this->title = '系统登录';
|
||||||
|
$this->domain = Request::host(true);
|
||||||
|
if (!($this->loginskey = session('loginskey'))) session('loginskey', $this->loginskey = uniqid());
|
||||||
|
$this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']) || is_numeric(stripos($this->domain, 'thinkadmin.top'));
|
||||||
$this->fetch();
|
$this->fetch();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -18,7 +18,7 @@ use think\facade\Route;
|
|||||||
|
|
||||||
/* 演示环境禁止操作路由绑定 */
|
/* 演示环境禁止操作路由绑定 */
|
||||||
$domain = Request::host(true);
|
$domain = Request::host(true);
|
||||||
if (in_array($domain, ['127.0.0.1', 'localhost']) or stripos($domain, 'thinkadmin.top') <> false) {
|
if (in_array($domain, ['127.0.0.1', 'localhost']) || stripos($domain, 'thinkadmin.top') <> false) {
|
||||||
Route::post('admin/user/pass', function () {
|
Route::post('admin/user/pass', function () {
|
||||||
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user