diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php
index bb7de1a7d..9457a26a5 100644
--- a/application/admin/controller/Index.php
+++ b/application/admin/controller/Index.php
@@ -9,6 +9,10 @@ class Index extends BasicAdmin {
public function index() {
$this->assign('ptitle', '后台管理');
+ return view();
+ }
+
+ public function main() {
$version = Db::query('select version() as ver');
$version = array_pop($version);
$this->assign('mysql_ver', $version['ver']);
diff --git a/application/admin/view/index.index.html b/application/admin/view/index.index.html
index b0647b859..5ef9b8e78 100644
--- a/application/admin/view/index.index.html
+++ b/application/admin/view/index.index.html
@@ -4,77 +4,6 @@
{include file="extra@admin/top"}
<{include file="extra@admin/left"}>
-
-
-
-
-
-
- 框架版本 |
- {$Think.const.THINK_VERSION} |
-
-
- 系统类型 |
- {:php_uname('s')} |
-
-
- 运行环境 |
- {:php_sapi_name()} |
-
-
- PHP版本 |
- {:phpversion()} |
-
-
- MySQL版本 |
- {$mysql_ver} |
-
-
- 上传限制 |
- {:ini_get('upload_max_filesize')} |
-
-
- POST限制 |
- {:ini_get('post_max_size')} |
-
-
-
-
-
-
- 框架版本 |
- {$Think.const.THINK_VERSION} |
-
-
- 系统类型 |
- {:php_uname('s')} |
-
-
- 运行环境 |
- {:php_sapi_name()} |
-
-
- PHP版本 |
- {:phpversion()} |
-
-
- MySQL版本 |
- {$mysql_ver} |
-
-
- 上传限制 |
- {:ini_get('upload_max_filesize')} |
-
-
- POST限制 |
- {:ini_get('post_max_size')} |
-
-
-
-
-
-
-
-
+
{/block}
\ No newline at end of file
diff --git a/application/admin/view/index.main.html b/application/admin/view/index.main.html
new file mode 100644
index 000000000..c35bfd21a
--- /dev/null
+++ b/application/admin/view/index.main.html
@@ -0,0 +1,68 @@
+
+
+
+
+
+ 框架版本 |
+ {$Think.const.THINK_VERSION} |
+
+
+ 系统类型 |
+ {:php_uname('s')} |
+
+
+ 运行环境 |
+ {:php_sapi_name()} |
+
+
+ PHP版本 |
+ {:phpversion()} |
+
+
+ MySQL版本 |
+ {$mysql_ver} |
+
+
+ 上传限制 |
+ {:ini_get('upload_max_filesize')} |
+
+
+ POST限制 |
+ {:ini_get('post_max_size')} |
+
+
+
+
+
+
+ 框架版本 |
+ {$Think.const.THINK_VERSION} |
+
+
+ 系统类型 |
+ {:php_uname('s')} |
+
+
+ 运行环境 |
+ {:php_sapi_name()} |
+
+
+ PHP版本 |
+ {:phpversion()} |
+
+
+ MySQL版本 |
+ {$mysql_ver} |
+
+
+ 上传限制 |
+ {:ini_get('upload_max_filesize')} |
+
+
+ POST限制 |
+ {:ini_get('post_max_size')} |
+
+
+
+
+
\ No newline at end of file
diff --git a/application/extra/view/admin.top.html b/application/extra/view/admin.top.html
index 7aa2e42c0..0cb7c38d1 100644
--- a/application/extra/view/admin.top.html
+++ b/application/extra/view/admin.top.html
@@ -6,7 +6,11 @@
{:sysconf('app_name')} {:sysconf('app_version')}
-
+
+ 系统信息
+
+
系统管理
diff --git a/public/static/admin/listen.js b/public/static/admin/listen.js
index 14b65d809..db086fc7e 100644
--- a/public/static/admin/listen.js
+++ b/public/static/admin/listen.js
@@ -162,7 +162,7 @@ define(['jquery', 'admin.plugs'], function () {
};
/*! 通过URI查询最有可能的菜单NODE */
function queryNode(url) {
- var $menu = $('.framework-sidebar').find('[data-menu-node][data-open*="_URL_"]'.replace('_URL_', url.replace(/\.html$/ig, '')));
+ var $menu = $('[data-menu-node][data-open*="_URL_"]'.replace('_URL_', url.replace(/\.html$/ig, '')));
if ($menu.size()) {
return $menu.get(0).getAttribute('data-menu-node');
}