-
Notifications
You must be signed in to change notification settings - Fork 13
/
app_users_admin.html
237 lines (215 loc) · 8.67 KB
/
app_users_admin.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>环信开发者中心</title>
<!--
<link href="//cdnjscn.b0.upaiyun.com/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="//cdnjscn.b0.upaiyun.com/libs/twitter-bootstrap/2.3.2/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" media="screen"/>
-->
<link href="assets/css/bootstrap-2.3.2.min.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="assets/css/bootstrap-responsive-2.3.2.min.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="assets/css/font-awesome-3.1.0.min.css" rel="stylesheet" type="text/css" media="screen"/>
<!--[if IE 7]>
<link rel="stylesheet" href="assets/css/font-awesome-ie7.min.css" />
<![endif]-->
<!--fonts-->
<!-- <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,300" /> -->
<!--ace styles-->
<link href="assets/css/ace.min.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="assets/css/ace-responsive.min.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="assets/css/ace-skins.min.css" rel="stylesheet" type="text/css" media="screen"/>
<!--[if lte IE 8]>
<link rel="stylesheet" href="assets/css/ace-ie.min.css" />
<![endif]-->
<link href="assets/css/management.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="assets/css/manage.css" rel="stylesheet" type="text/css" media="screen"/>
<!--
<script src="//cdnjscn.b0.upaiyun.com/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="//cdnjscn.b0.upaiyun.com/libs/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="//cdnjscn.b0.upaiyun.com/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="//cdnjscn.b0.upaiyun.com/libs/json2/20130526/json2.min.js"></script>
-->
<script src="assets/js/jquery-1.7.2.min.js"></script>
<script src="assets/js/jquery.cookie-1.3.js"></script>
<script src="assets/js/bootstrap-2.3.2.min.js"></script>
<script src="assets/js/json2.js"></script>
<script src="assets/js/ace-elements.min.js"></script>
<script src="assets/js/ace.min.js"></script>
<script src="assets/js/management.js"></script>
<script src="assets/js/layer/layer.min.js"></script>
<script tyep="text/javascript">
var appUuid = getQueryString('appUuid');
var Application = $.cookie('Application');
$(function(){
$('#showName').text(Application);
if (!getToken() || getToken()==''){
logout();
}
getAppProfile(appUuid);
getAppUsersAdminList(appUuid);
$('#searchForm').submit(function(){
searchUserTmp();
return false;
});
});
// 上一页数据
function getPrevAppUserList(){
getAppUsersAdminList(appUuid,'forward');
}
// 下一页数据
function getNextAppUserList(){
getAppUsersAdminList(appUuid,'next');
}
//删除选定的用户
function deleteAppUsersBox(){
deleteAppUserCheckBox(appUuid);
}
// 应用概述页
function toApppofile(){
window.location.href = 'app_profile.html?appUuid='+appUuid;
}
// 用户管理页
function toAppUsersPage(){
window.location.href = 'app_users.html?appUuid='+appUuid;
}
// 群组管理页
function togroupAppAdmin(){
window.location.href = 'app_chatrooms.html?appUuid='+appUuid;
}
// 推送证书管理页
function toAppCredentialsPage(){
window.location.href = 'app_credentials.html?appUuid='+appUuid;
}
// 数据统计页面
function toApppofileCounter(){
window.location.href = 'app_profile_counter.html?appUuid='+appUuid;
}
// 应用管理员创建页面
function toCreateAppAdmin(){
window.location.href = 'app_admin_create.html?appUuid='+appUuid;
}
// 群组页面
function togroupAppAdmin(){
window.location.href = 'app_group.html?appUuid='+appUuid;
}
//管理员列表页面
function toAppUserAdmin(){
window.location.href = 'app_users_admin.html?appUuid='+appUuid;
}
//添加管理员页面
function toAddUserAdmin(){
window.location.href = 'app_admin_create.html?appUuid='+appUuid;
}
// 去除字符串中所有空格
function removeAllSpace(str) {
return str.replace(/\s+/g, "");
}
</script>
</head>
<body>
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container-fluid"> <a class="brand" href="javascript:void(0);"> <small> <img style="height:45px;" src="assets/images/home_logo.png" alt="管理后台"/> </small> </a>
<div class="lianjie">
<ol>
<li><a href="http://www.easemob.com" target="_blank"><h5>主页</h5></a></li>
<li><a href="http://developer.easemob.com" target="_blank"><h5>文档</h5></a></li>
<li><a href="http://www.easemob.com/faq" target="_blank"><h5>帮助</h5></a></li>
<li><a href="http://www.easemob.com/sdk" target="_blank"><h5>下载SDK</h5></a></li>
</ol>
</div>
<ul class="nav ace-nav pull-right">
<li class="light-blue user-profile"> <a class="user-menu dropdown-toggle" href="javascript:void(0);" data-toggle="dropdown"> <span id="user_info"></span> <i class="icon-caret-down"></i> </a>
<ul id="user_menu" class="pull-right dropdown-menu dropdown-yellow dropdown-caret dropdown-closer">
<li class="divider"></li>
<li> <a href="admin_home.html"> <i class="icon-user"></i> 账户 </a> </li>
<li> <a onClick="logout();" href="javascript:void(0);"> <i class="icon-off"></i> 退出 </a> </li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div id="main-container" class="container-fluid"> <a href="javascript:void(0);" id="menu-toggler"> <span></span> </a>
<div id="sidebar">
<div id="sidebar-shortcuts">
<div style="min-height: 40px;" id="sidebar-shortcuts-large"> </div>
<div style="min-height: 40px;" id="sidebar-shortcuts-mini"> </div>
</div>
<ul class="nav nav-list">
<li class="active"> <a href="app_list.html" target="_self"> <i class="icon-ambulance"></i> <span>我的应用</span> </a></li>
<li> <a href="admin_home.html" target="_self"> <i class="icon-user"></i> <span>个人信息</span> </a></li>
</ul>
<div id="sidebar-collapse"> <i class="icon-double-angle-left"></i> </div>
</div>
<div class="clearfix" id="main-content">
<div id="breadcrumbs">
<ul class="breadcrumb">
<li> <i class="icon-home"></i> 我的应用 <span class="divider"> <i class="icon-angle-right"></i> </span> </li>
<li> <a href="javascript:void(0);" target="_self"> <span id="showName"></span></a></li>
</ul>
</div>
<div class="clearfix" id="page-content">
<div class="row-fluid">
<div class="pagination pagination-left">
<ul>
<li> <a href="javascript:toApppofile()">应用概况</a> </li>
</ul>
<ul>
<li> <a href="javascript:toAppUsersPage()">IM用户</a> </li>
</ul>
<ul>
<li> <a href="javascript:togroupAppAdmin()">群组</a> </li>
</ul>
<ul>
<li> <a href="javascript:toAppCredentialsPage()">推送证书</a> </li>
</ul>
<ul>
<li> <a href="javascript:toApppofileCounter()">统计数据</a> </li>
</ul>
<ul>
<li> <a href="javascript:toAppUserAdmin()"><font color="green">App管理员</font></a> </li>
</ul>
<hr/>
</div>
<div class="pagination pagination-left">
<ul>
<li> <a href="javascript:toAddUserAdmin()">新建App管理员</a> </li>
</ul>
</div>
<div class="row-fluid">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th></th>
<th class="hidden-480 text-center"><i></i>用户名</th>
<th class="hidden-480 text-center"><i></i>创建时间</th>
<!--<th class="hidden-480 text-center"><i></i>最后登录时间</th>
<th class="hidden-480 text-center"><i></i>活跃度</th>
<th class="hidden-480 text-center"><i></i>用户状态</th>-->
<th class="hidden-480 text-center"><i></i>操作</th>
</tr>
</thead>
<tbody id="appUserAdminBody"></tbody>
</table>
<div id="paginau" class="pagination pagination-right">
<!--<ul>
<li> <a href="javascript:void(0);" onclick="getPrevAppUserList();">上一页</a> </li>
<li> <a href="javascript:void(0);" onclick="getNextAppUserList();">下一页</a> </li>
</ul>-->
<span id="pageInfo"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>