wpfw_ewei_shopv2/template/web/system/auth/upgrade.html
2023-02-14 19:57:32 +08:00

177 lines
6.8 KiB
HTML

{template '_header'}
<style>
.label.label-primary:hover{background-color: #1ab394;}
.label.label-warning:hover{background-color: #f8ac59;}
</style>
<div class="page-heading">
<span class='pull-right'>
{if !empty($result['status'])}<a href="{$url}" class='label label-primary' style="">更新服务到期时间: {$result['result']['auth_date_end']}</a>{/if}
{if !empty($auth_str)}<a href="{$url}" class='label label-warning'>{$auth_str}</a>{/if}
</span>
<h2>系统更新 </h2>
</div>
<form action="" method="post" class="form-horizontal form" enctype="multipart/form-data" >
<div class="form-group">
<label class="col-sm-2 control-label">当前版本</label>
<div class="col-sm-9 col-xs-12">
<div class="input-group">
<div class="input-group-addon" style="background:#f2f2f2">{$version}</div>
<input type='text' class='form-control' value="RELEASE {$release}" readonly style="background:#fff;"/>
<div class="input-group-btn">
<a class='btn btn-default' href="{php echo webUrl('system/auth/upgrade/checkversion')}" >降级版本更新</a>
</div>
</div>
</div>
</div>
<div class="form-group" >
<label class="col-sm-2 control-label">最新版本</label>
<div class="col-sm-9 col-xs-12">
<div class="form-control-static" id="check">等待检测...</div>
</div>
</div>
<div class="form-group" id="upgrade" style="display:none">
<label class="col-sm-2 control-label"></label>
<div class="col-sm-9 col-xs-12">
<div class='form-control-static'>
<input type="button" id="upgradebtn" value="立即更新" class="btn btn-primary" />
</div>
</div>
</div>
</form>
<script language='javascript'>
function process(action) {
$.ajax({
url: "{php echo webUrl('system/auth/upgrade/process')}",
data: {action: action},
type: 'post',
dataType: 'json',
success: function (ret) {
var status = ret.status;
var result = ret.result;
var act = result.action;
if (act == 'database') {
if (status == 1) {
$('#upgradebtn').val("已更新 " + result.success + " 条数据库结构变动 / 共 " + result.total + " 条");
process('database');
} else {
$('#upgradebtn').val("已成功更新 " + result.total + " 条数据库结构变动");
process('file');
}
} else if (act == 'file') {
if (status == 1) {
$('#upgradebtn').val("已更新 " + result.success + " 个文件 / 共 " + result.total + " 个文件");
process('file');
} else {
$('#upgradebtn').val("已成功更新 " + result.total + " 个文件");
process('upgrade');
}
} else if (act== 'upgrade') {
if (status == 1) {
$('#upgradebtn').val("已更新 " + result.success + " 个补丁 / 共 " + result.total + " 个补丁");
process('upgrade');
} else {
$('#upgradebtn').val('更新成功').removeAttr('updating');
tip.alert('更新成功!', function () {
location.reload();
});
}
}
}
});
}
$(function () {
$.ajax({
url: "{php echo webUrl('system/auth/upgrade/check')}",
type: 'post',
dataType: 'json',
success: function (ret) {
var result = ret.result;
if (ret.status == 1) {
var html = "";
if (result.filecount <= 0 && !result.database && !result.upgrades) {
html += "<span style='color: blue;'>您当前版本为最新版本,无需更新。</span>"
} else {
html += "最新版本: <span style='color:red'>" + result.version + "</span> RELEASE " + result.release +"<br/>";
if (result.filecount > 0) {
html += "共检测到有 <span style='color:red'>" + result.filecount + "</span> 个文件需要更新.<br/>";
}
if (result.database || result.upgrades) {
html += "此次有数据变动.<br/>";
}
if(result.templatefiles!=''){
html += "<br/><b>模板更新</b><br/>";
html += "<div style='height:150px;width:700px;overflow:auto;border:1px solid #f2f2f2;padding:5px;margin-top:10px;'>" + result.templatefiles + "</div><br/>";
}
if (result.log != '') {
html += "<br/><b>更新日志:</b><br/>";
html += '<div class="ibox-content no-padding" style="width:700px;overflow:auto;"> <div class="panel-body" style="padding: 15px 0px;"> <div class="panel-group" id="version">'+result.log+'</div></div></div>';
}
html += "<br/><b style='color:red'>更新之前请注意数据备份!</b><br/><br/>";
}
html += "<div id='process'></div>";
$("#check").html(html);
if (result.filecount > 0 || result.database || result.upgrades) {
$('#upgrade').show();
$("#upgradebtn").unbind('click').click(function () {
if ($(this).attr('updating') == '1') {
return;
}
tip.confirm('确认已备份,并进行更新吗?', function () {
$(this).attr('updating', 1).val('正在更新中...');
if( result.database){
process('database');
} else if(result.filecount>0){
process('file');
}else if(result.upgrades){
process('upgrade');
}
});
});
}
} else {
$("#check").html(result.message);
}
}
})
})
</script>
{template '_footer'}