Browse Source

首页登录

PC-20230314RMCU\Administrator 2 years ago
parent
commit
67a64691f7
2 changed files with 4 additions and 12 deletions
  1. 3 11
      application/admin/controller/Home.php
  2. 1 1
      config/database.php

+ 3 - 11
application/admin/controller/Home.php

@@ -3,8 +3,6 @@
 namespace app\admin\controller;
 
 use library\Controller;
-use library\service\AdminService;
-use library\service\MenuService;
 use think\Db;
 
 /**
@@ -26,15 +24,9 @@ class Home extends Controller
     public function index()
     {
         $this->title = '基础配置';
-        $auth = AdminService::instance()->apply(true);
-        if (!$auth->isLogin()) {
-            $this->redirect('@admin');
-        } else {
-            $data = Db::name($this->table)->order('id', 'desc')->find();
-            $this->assign("data", $data);
-            $this->_form($this->table, 'index');
-        }
-//        $this->fetch();
+        $data = Db::name($this->table)->order('id', 'desc')->find();
+        $this->assign("data", $data);
+        $this->_form($this->table, 'index');
     }
 
     /**

+ 1 - 1
config/database.php

@@ -19,7 +19,7 @@ return [
     // 数据库类型
     'type'        => 'mysql',
     // 服务器地址
-    'hostname'    => '127.0.0.1',
+    'hostname'    => '120.79.86.50',
     // 数据库名
     'database'    => 'website_hdlkeji_',
     // 用户名