-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 2.36 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ContentManageSystem</title>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/html/common/style.html')?>
</head>
<body>
<!-- 侧边栏 -->
<?php include($_SERVER['DOCUMENT_ROOT'] . '/html/common/aside.html')?>
<!-- 主体 -->
<div class="main">
<div class="container-fluid">
<!-- 头部 -->
<?php include($_SERVER['DOCUMENT_ROOT'] . '/html/common/header.html')?>
<!-- 个人资料 -->
<div class="body teacher-profile">
<div class="profile">
<div class="row survey">
<div class="col-xs-3">
<div class="cell money">
<i class="fa fa-money"></i>
<span>我的收入</span>
<h5>¥11.11</h5>
</div>
</div>
<div class="col-xs-3">
<div class="cell th">
<i class="fa fa-th"></i>
<span>课程数量</span>
<h5>12</h5>
</div>
</div>
<div class="col-xs-3">
<div class="cell user">
<i class="fa fa-user"></i>
<span>用户数量</span>
<h5>236</h5>
</div>
</div>
<div class="col-xs-3">
<div class="cell eye">
<i class="fa fa-eye"></i>
<span>浏览量</span>
<h5>22435</h5>
</div>
</div>
</div>
<div class="chart">
<div id="main" style="width: 600px;height:400px;"></div>
</div>
</div>
</div>
</div>
</div>
//加载loading
<?php include($_SERVER['DOCUMENT_ROOT'] . '/html/common/loading.html')?>
<script src="/lib/require/require-2.3.3.js" data-main="/js/common/main"></script>
</body>
</html>