1、安装文件更新
2、内核更新
This commit is contained in:
60
application/install/view/public/base.html
Normal file
60
application/install/view/public/base.html
Normal file
@@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>SentCMS系统安装</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<!-- zui -->
|
||||
<link href="__PUBLIC__/css/bootstrap/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="__PUBLIC__/js/jquery.js"></script>
|
||||
<style>
|
||||
body{font-family: "Microsoft Yahei",'新宋体';}
|
||||
.container{background: #ffffff; margin: 50px auto; padding: 20px 0; width: 1024px;}
|
||||
.header-title{border-bottom: 1px solid #dedede; margin-bottom: 10px;}
|
||||
.progress-tool{padding: 10px;}
|
||||
.progress{height: 30px;}
|
||||
.progress-bar{line-height: 30px; font-size: 14px;}
|
||||
.article{padding: 0 20px;}
|
||||
h1{font-size: 18px; color: #333333; font-weight: bold;}
|
||||
h2{font-size: 16px; color: #333333; font-weight: bold;}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body style="background: rgb(230, 234, 234)">
|
||||
<div class="container">
|
||||
<div class="margin">
|
||||
<div class="text-center header-title margin-top">
|
||||
<h1>SentCMS系统{if session('update')}升级{else/}安装{/if}</h1>
|
||||
</div>
|
||||
<div class="progress-tool">
|
||||
<div class="progress">
|
||||
<div class="progress-bar progress-bar-{$status['index']} progress-bar-striped" style="width: 20%">
|
||||
<span>系统安装</span>
|
||||
</div>
|
||||
<div class="progress-bar progress-bar-{$status['check']} progress-bar-striped" style="width: 20%">
|
||||
<span>环境检查</span>
|
||||
</div>
|
||||
<div class="progress-bar progress-bar-{$status['config']} progress-bar-striped" style="width: 20%">
|
||||
<span>系统配置</span>
|
||||
</div>
|
||||
<div class="progress-bar progress-bar-{$status['sql']} progress-bar-striped" style="width: 20%">
|
||||
<span>数据库安装</span>
|
||||
</div>
|
||||
<div class="progress-bar progress-bar-{$status['complete']} progress-bar-striped" style="width: 20%">
|
||||
<span>安装完成</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="article margin-top">
|
||||
{block name="body"}{/block}
|
||||
|
||||
<div class="margin-top">
|
||||
{block name="footer"}{/block}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user