|
@@ -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');
|
|
|
}
|
|
|
|
|
|
/**
|