80 lines
2.7 KiB
Plaintext
80 lines
2.7 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>后台首页</title>
|
||
|
<#include "base/pageheader.ftl" />
|
||
|
<link rel="stylesheet" href="${request.contextPath}/static/modules/manager/css/manager.css" media="all" />
|
||
|
<style>
|
||
|
.layui-tab-content {
|
||
|
width: 100%;
|
||
|
position: absolute;
|
||
|
top: 41px;
|
||
|
bottom: 0px;
|
||
|
left: 0px;
|
||
|
}
|
||
|
|
||
|
iframe::-webkit-scrollbar {
|
||
|
width: 8px;
|
||
|
height: 8px;
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
|
||
|
/*定义滚动条的轨道,内阴影及圆角*/
|
||
|
iframe::-webkit-scrollbar-track {
|
||
|
border-radius: 10px;
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
|
||
|
/*定义滑块,内阴影及圆角*/
|
||
|
iframe::-webkit-scrollbar-thumb {
|
||
|
/*width: 10px;*/
|
||
|
height: 20px;
|
||
|
border-radius: 10px;
|
||
|
background-color: #555;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="layui-fluid" style="height:98%">
|
||
|
<div class="layui-row layui-col-space5">
|
||
|
<div class="layui-col-md8">
|
||
|
<div class="layui-card">
|
||
|
<div class="layui-card-header">数据概览</div>
|
||
|
<iframe title="datacollection" src="${request.contextPath}/core/datact/"
|
||
|
style="border-style: none;width:100%; height:350px;"></iframe>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<div class="layui-col-md4">
|
||
|
<div class="layui-card">
|
||
|
<div class="layui-card-header">版本信息</div>
|
||
|
<iframe title="version" src="${request.contextPath}/manager/version/maxVersion/"
|
||
|
style="border-style: none;width:100%; height:350px"></iframe>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="layui-col-md8">
|
||
|
<div class="layui-card">
|
||
|
<div class="layui-card-header">预警信息</div>
|
||
|
<iframe id="warn" title="version" src="${request.contextPath}/manager/corewarn/"
|
||
|
style="border-style: none;width:100%; height:360px"></iframe>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="layui-col-md4">
|
||
|
<div class="layui-card">
|
||
|
<div class="layui-card-header">服务器信息</div>
|
||
|
<iframe id="warn" title="version" src="${request.contextPath}/manager/server/"
|
||
|
style="border-style: none;width:100%; height:360px"></iframe>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<#include "base/pagefoot.ftl" />
|
||
|
<#-- //开启IM打开 <#include "base/im.ftl"> -->
|
||
|
</body>
|
||
|
|
||
|
</html>
|