-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.html
96 lines (96 loc) · 2.93 KB
/
console.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/signin.css">
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico" />
<title>扬华SMS-控制台</title>
</head>
<body class="fix-top">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">扬华SMS</a>
</div>
<div class="collapse navbar-collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="console.html">控制台</a></li>
<li><a href="notice_manage.html">通知</a></li>
<li><a href="fresh_manage.html">招新管理</a></li>
<li><a href="member_manage.html">成员管理</a></li>
<li><a href="send_log.html">历史记录</a></li>
<li><a href="profile.html">个人中心</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-stats" aria-hidden="true"></span>
<label>使用统计</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>成员人数</th>
<th>今日使用</th>
<th>本月使用</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">20</a></td>
<td>30</td>
<td>80</td>
</tr>
</tbody>
</table>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-scale" aria-hidden="true"></span>
<label>应用统计</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>应用名</th>
<th>今日使用</th>
<th>近一个月使用量</th>
<th>联系人数</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">通知</a></td>
<td>23</td>
<td>30</td>
<td>50</td>
</tr>
<tr>
<td><a href="#">招新管理</a></td>
<td>30</td>
<td>50</td>
<td>100</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>