diff --git a/app/admin/view/index/main.html b/app/admin/view/index/main.html
index 9b12aeb..b22c2db 100644
--- a/app/admin/view/index/main.html
+++ b/app/admin/view/index/main.html
@@ -267,17 +267,23 @@
success: function (e) {
if (e.code == 0) {
var html = '';
- $.each(e.data, function (key, value) {
- html += '
\
- '+value.username+' | \
- \
- \
- | \
- '+value.login_num+' | \
- '+value.last_login_time+' | \
-
';
- });
- console.log(html);
+ if(e.data.length==0){
+ html +='\
+ 暂无用户 | \
+
';
+ }
+ else{
+ $.each(e.data, function (key, value) {
+ html += '\
+ '+value.username+' | \
+ \
+ \
+ | \
+ '+value.login_num+' | \
+ '+value.last_login_time+' | \
+
';
+ });
+ }
$('#UserList').append(html);
}
}
@@ -291,13 +297,20 @@
success: function (e) {
if (e.code == 0) {
var html = '';
- $.each(e.data, function (key, value) {
- html += '\
- '+value.title+' | \
- ' + value.cate_title + ' | \
- '+value.create_time+' | \
-
';
- });
+ if(e.data.length==0){
+ html +='\
+ 暂无文章 | \
+
';
+ }
+ else{
+ $.each(e.data, function (key, value) {
+ html += '\
+ '+value.title+' | \
+ ' + value.cate_title + ' | \
+ '+value.create_time+' | \
+
';
+ });
+ }
$('#Article').append(html);
}
}
diff --git a/app/home/controller/Index.php b/app/home/controller/Index.php
index d29d3d6..e625f1b 100644
--- a/app/home/controller/Index.php
+++ b/app/home/controller/Index.php
@@ -17,9 +17,8 @@ class Index extends BaseController
public function index()
{
add_user_log('view', '首页');
- $version = get_system_config('other','version');
$count = \think\facade\Db::name('UserLog')->where(array('type' => 'down'))->count();
- return View('',['version'=>$version,'count'=>$count]);
+ return View('',['count'=>$count]);
}
public function logs()
@@ -30,7 +29,7 @@ class Index extends BaseController
public function down()
{
- $version = get_system_config('other','version');
+ $version = CMS_VERSION;
add_user_log('down', $version.'版本代码');
header("Location: https://www.gougucms.com/storage/gougucms_".$version."_full.zip");
//确保重定向后,后续代码不会被执行
diff --git a/app/home/view/index/index.html b/app/home/view/index/index.html
index feb2871..e70454e 100644
--- a/app/home/view/index/index.html
+++ b/app/home/view/index/index.html
@@ -17,7 +17,7 @@
立即下载
-
当前版本:{$version}
+
当前版本:v{:CMS_VERSION}
更新日志
下载量:{$count}
diff --git a/app/install/view/index/step1.html b/app/install/view/index/step1.html
index 1c56357..6ef39c4 100644
--- a/app/install/view/index/step1.html
+++ b/app/install/view/index/step1.html
@@ -24,11 +24,10 @@
-
+