Spaces:
Running
Running
Update index.html
Browse files- index.html +81 -18
index.html
CHANGED
@@ -1,19 +1,82 @@
|
|
1 |
-
<!
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8">
|
5 |
+
<title>LCIM后台管理</title>
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
7 |
+
<!-- 引入Layui的CSS文件,使用国内CDN源 -->
|
8 |
+
<link rel="stylesheet" href="https://www.layuicdn.com/layui/css/layui.css" media="all">
|
9 |
+
<style>
|
10 |
+
body {
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
background-color: #f2f2f2;
|
14 |
+
}
|
15 |
+
.layui-layout-admin .layui-header {
|
16 |
+
background-color: #24262f;
|
17 |
+
}
|
18 |
+
.logo {
|
19 |
+
width: 200px;
|
20 |
+
height: 60px;
|
21 |
+
line-height: 60px;
|
22 |
+
text-align: center;
|
23 |
+
font-size: 18px;
|
24 |
+
color: #ffffff;
|
25 |
+
font-weight: bold;
|
26 |
+
}
|
27 |
+
.layui-body {
|
28 |
+
left: 200px;
|
29 |
+
}
|
30 |
+
.layui-side {
|
31 |
+
width: 200px;
|
32 |
+
}
|
33 |
+
.layui-nav-tree .layui-nav-item a {
|
34 |
+
padding-left: 30px;
|
35 |
+
}
|
36 |
+
.layui-nav-tree .layui-nav-item a:hover {
|
37 |
+
background-color: #009688;
|
38 |
+
}
|
39 |
+
</style>
|
40 |
+
</head>
|
41 |
+
<body class="layui-layout-body">
|
42 |
+
<div class="layui-layout layui-layout-admin">
|
43 |
+
<div class="layui-header">
|
44 |
+
<div class="logo">LCIM后台管理</div>
|
45 |
+
</div>
|
46 |
+
|
47 |
+
<div class="layui-side layui-bg-cyan">
|
48 |
+
<div class="layui-side-scroll">
|
49 |
+
<!-- 左侧导航区域(可配合layui已有的垂直导航) -->
|
50 |
+
<ul class="layui-nav layui-nav-tree" lay-filter="test">
|
51 |
+
<li class="layui-nav-item">
|
52 |
+
<a href="https://www.bilibili.com/video/BV1Ta4y1T7ZZ?spm_id_from=333.788.videopod.sections&vd_source=93a555d38ab9e419dbc3cd4aec3d7c36" target="_blank">用户管理</a>
|
53 |
+
</li>
|
54 |
+
<li class="layui-nav-item">
|
55 |
+
<a href="https://www.bilibili.com/video/BV1Ta4y1T7ZZ?spm_id_from=333.788.videopod.sections&vd_source=93a555d38ab9e419dbc3cd4aec3d7c36" target="_blank">网站设置</a>
|
56 |
+
</li>
|
57 |
+
<li class="layui-nav-item">
|
58 |
+
<a href="https://www.bilibili.com/video/BV1Ta4y1T7ZZ?spm_id_from=333.788.videopod.sections&vd_source=93a555d38ab9e419dbc3cd4aec3d7c36" target="_blank">群聊管理</a>
|
59 |
+
</li>
|
60 |
+
</ul>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
|
64 |
+
<div class="layui-body">
|
65 |
+
<!-- 内容主体区域 -->
|
66 |
+
<div style="padding: 15px;">
|
67 |
+
<h1>欢迎来到管理后台,ccll!</h1>
|
68 |
+
</div>
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
|
72 |
+
<!-- 引入Layui的JS文件,使用国内CDN源 -->
|
73 |
+
<script src="https://www.layuicdn.com/layui/layui.js"></script>
|
74 |
+
<script>
|
75 |
+
//JavaScript代码区域
|
76 |
+
layui.use('element', function(){
|
77 |
+
var element = layui.element;
|
78 |
+
|
79 |
+
});
|
80 |
+
</script>
|
81 |
+
</body>
|
82 |
+
</html>
|