-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconsole.html
More file actions
85 lines (85 loc) · 4.47 KB
/
console.html
File metadata and controls
85 lines (85 loc) · 4.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>主页</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link type="text/css" rel="stylesheet" href="static/layui/css/layui.css" />
<link type="text/css" rel="stylesheet" href="static/scrollbar/jquery.scrollbar.css" />
<link type="text/css" rel="stylesheet" href="static/admin/iconfont/iconfont.css" />
<link type="text/css" rel="stylesheet" href="static/admin/css/page-item.css" />
</head>
<body>
<div class="page-main scrollbar-inner">
<div class="page-container">
<div class="page-fluid layui-row layui-col-space15">
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-card-body ">
<blockquote class="layui-elem-quote">欢迎管理员:
<span class="x-red">lhh </span>!当前时间: <span class="nowTime"></span>
</blockquote>
</div>
</div>
</div>
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-card-header">系统信息</div>
<div class="layui-card-body ">
<table class="layui-table">
<tbody>
<tr><th>登录地址</th><td>127.0.0.1 </td></tr>
<tr><th>MySQL版本</th><td>8.0.12</td></tr>
<tr><th>服务器地址</th><td>localhost</td></tr>
<tr><th>操作系统</th><td>WINNT</td></tr>
<tr><th>语言</th><td>zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7</td></tr>
<tr><th>端口</th><td>80</td></tr>
<tr><th>运行环境</th><td>Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02</td></tr>
<tr><th>PHP版本</th><td>7.4.3</td></tr>
<tr><th>PHP运行方式</th><td>cgi-fcgi</td></tr>
<tr><th>ThinkPHP版本</th><td>5.1.37 LTS</td></tr>
<tr><th>上传附件限制</th><td>1024M</td></tr>
<tr><th>POST上传最大限制</th><td>1024M</td></tr>
<tr><th>最大执行时间限制</th><td>86400</td></tr>
<tr><th>剩余空间</th><td>9.44 GB</td></tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="layui-col-md12">
<div class="layui-card">
<div class="layui-card-header">开发团队</div>
<div class="layui-card-body ">
<table class="layui-table">
<tbody>
<tr>
<th>开发者</th>
<td>黄连木笛(1913555371@qq.com)</td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="static/admin/iconfont/iconfont.js"></script>
<script type="text/javascript" src="static/jquery/jquery-3.4.1.js"></script>
<script type="text/javascript" src="static/admin/js/common.js"></script>
<script type="text/javascript" src="static/scrollbar/jquery.scrollbar.min.js"></script>
<script type="text/javascript" src="static/layui/layui.js"></script>
<script type="text/javascript">
$(document).ready(function () {
jQuery(".page-main").scrollbar();
$(".nowTime").html(getNowTime());
setInterval(function () {
$(".nowTime").html(getNowTime());
},1000);
});
function getNowTime(){
return date("Y-m-d H:i:s");
}
</script>
</body>
</html>