layui整体升级到2.68版本

This commit is contained in:
hdm 2021-09-09 09:10:05 +08:00
parent 5b5363c4ec
commit f1e7c6101b
7 changed files with 40 additions and 29 deletions

View File

@ -267,17 +267,23 @@
success: function (e) {
if (e.code == 0) {
var html = '';
$.each(e.data, function (key, value) {
html += '<tr>\
<td>'+value.username+'</td>\
<td>\
<img src="' + value.headimgurl + '" width="20" height="20" />\
</td>\
<td>'+value.login_num+'</td>\
<td>'+value.last_login_time+'</td>\
</tr>';
});
console.log(html);
if(e.data.length==0){
html +='<tr>\
<td colspan="4" style="padding:10px 0; color:#999; text-align:center;">暂无用户</td>\
</tr>';
}
else{
$.each(e.data, function (key, value) {
html += '<tr>\
<td>'+value.username+'</td>\
<td>\
<img src="' + value.headimgurl + '" width="20" height="20" />\
</td>\
<td>'+value.login_num+'</td>\
<td>'+value.last_login_time+'</td>\
</tr>';
});
}
$('#UserList').append(html);
}
}
@ -291,13 +297,20 @@
success: function (e) {
if (e.code == 0) {
var html = '';
$.each(e.data, function (key, value) {
html += '<tr>\
<td>'+value.title+'</td>\
<td>' + value.cate_title + '</td>\
<td>'+value.create_time+'</td>\
</tr>';
});
if(e.data.length==0){
html +='<tr>\
<td colspan="3" style="padding:10px 0; color:#999; text-align:center;">暂无文章</td>\
</tr>';
}
else{
$.each(e.data, function (key, value) {
html += '<tr>\
<td>'+value.title+'</td>\
<td>' + value.cate_title + '</td>\
<td>'+value.create_time+'</td>\
</tr>';
});
}
$('#Article').append(html);
}
}

View File

@ -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");
//确保重定向后,后续代码不会被执行

View File

@ -17,7 +17,7 @@
<a href="/home/index/down.html" target="_blank">立即下载</a>
</div>
<div class="cms-version">
<span>当前版本:<i>{$version}</i></span>
<span>当前版本:<i>v{:CMS_VERSION}</i></span>
<span><a href="/home/index/logs.html" rel="nofollow" target="_blank">更新日志</a></span>
<span>下载量:<i>{$count}</i></span>
</div>

View File

@ -24,11 +24,10 @@
</head>
<body>
<div style="width:200px;margin: 20px auto;"><img src="/static/admin/images/login_logo.png" alt="勾股CMS安装"
width="200"></div>
<div style="width:200px;margin: 20px auto;"><img src="/static/admin/images/login_logo.png" alt="勾股CMS安装" width="200"></div>
<div style="width:888px;margin:0 auto 30px;">
<div class="layui-layout layui-layout-admin">
<div class="layui-header layui-bg-red" style="border-radius:6px 6px 0 0">
<div class="layui-header layui-bg-red" style="border-radius:6px 6px 0 0; position:relative;">
<div class="layui-logo" style="color: #fff; width:100px;">安装引导</div>
<ul class="layui-nav layui-layout-right">
<li class="layui-nav-item">v{:CMS_VERSION}</li>

View File

@ -28,7 +28,7 @@
width="200"></div>
<div style="width:888px;margin:0 auto 30px;">
<div class="layui-layout layui-layout-admin">
<div class="layui-header layui-bg-red" style="border-radius:6px 6px 0 0">
<div class="layui-header layui-bg-red" style="border-radius:6px 6px 0 0;position:relative;">
<div class="layui-logo" style="color: #fff; width:100px;">安装引导</div>
<ul class="layui-nav layui-layout-right">
<li class="layui-nav-item">v{:CMS_VERSION}</li>

View File

@ -28,7 +28,7 @@
width="200"></div>
<div style="width:888px;margin:0 auto 30px;">
<div class="layui-layout layui-layout-admin">
<div class="layui-header layui-bg-red" style="border-radius:6px 6px 0 0">
<div class="layui-header layui-bg-red" style="border-radius:6px 6px 0 0;position:relative;">
<div class="layui-logo" style="color: #fff; width:100px;">安装引导</div>
<ul class="layui-nav layui-layout-right">
<li class="layui-nav-item">v{:CMS_VERSION}</li>

View File

@ -15,10 +15,10 @@ if (empty(file_exists(__DIR__ . '/../vendor/autoload.php'))) {
require __DIR__ . '/../vendor/autoload.php';
// 定义当前版本号
define('CMS_VERSION','1.21');
define('CMS_VERSION','1.1.9');
// 定义ThinkPHP版本号
define('TP_VERSION','6.0.5');
define('TP_VERSION','6.0.9');
// 定义Layui版本号
define('LAYUI_VERSION','2.6.8');