web_toolset/web/index.html

44 lines
1000 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>控制中心</title>
2020-04-16 10:06:36 +08:00
<link rel="stylesheet" href="/layui/css/layui.css">
</head>
2020-04-16 10:06:36 +08:00
<body>
<div class="layui-layout layui-layout-admin">
2020-04-16 10:06:36 +08:00
<div id="header"></div>
2020-04-16 01:53:25 +08:00
<div class="layui-body" style="left: 0px;">
2020-04-16 10:06:36 +08:00
</div>
2020-04-16 10:06:36 +08:00
<div id="footer"></div>
</div>
2020-04-16 10:06:36 +08:00
<script src="/layui/layui.js"></script>
<script src="/js/jquery-3.2.1.js"></script>
<script>
layui.use(['layer', 'form', 'element'], function () {
var layer = layui.layer
, form = layui.form;
});
2020-04-16 10:06:36 +08:00
$.ajax({cache: false})
2020-04-17 14:32:22 +08:00
$('#header').load("/html/header.html");
2020-04-16 10:06:36 +08:00
$('#footer').load("../html/footer.html");
</script>
<style>
#icon {
float: right;
}
2020-04-16 01:53:25 +08:00
.body {
bottom: 0;
}
</style>
</body>
</html>