-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
458 lines (397 loc) · 12.5 KB
/
index.php
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<?php
session_start();
if(!isset($_SESSION["username"])){
header("location: http://".$_SERVER["SERVER_NAME"]."/medoo_bootstrap_table/login.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>信息管理页</title>
<link rel="icon" href="favicon.ico">
<link
href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css"
rel="stylesheet">
<link
href="//cdn.bootcss.com/bootstrap-table/1.10.0/bootstrap-table.min.css"
rel="stylesheet">
<script src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script
src="//cdn.bootcss.com/bootstrap-table/1.10.0/bootstrap-table.min.js"></script>
<script
src="//cdn.bootcss.com/bootstrap-table/1.10.0/extensions/export/bootstrap-table-export.min.js"></script>
<script
src="//cdn.bootcss.com/bootstrap-table/1.10.0/locale/bootstrap-table-zh-CN.min.js"></script>
<script
src="//rawgit.com/hhurz/tableExport.jquery.plugin/master/tableExport.js"></script>
<script src="//cdn.bootcss.com/echarts/3.0.0/echarts.min.js"></script>
<script src="js/moment.min.js"></script>
<script src="js/moment.zh-cn.js"></script>
<script type="text/javascript">
$(function() {
$.getJSON("route.php?a=data",{"act":"newdata"},function(data) {
$("#xinzeng").text(data.newcount);
$("#xinzeng").tooltip({
"title" : "今日新增数据,点击查看",
"placement" : "bottom"
});
$("#xinzeng").mouseover();
$(".login_username").text(data.username);
$.getJSON('route.php?a=data', {"act":"datasum"},function(data) {
var myChart = echarts.init(document
.getElementById('echarts_test'));
var option = {
title : {
text : '用户注册统计',
subtext : "时间分组统计",
subtextStyle : {
fontSize : 15,
fontWeight : 'bold',
color : 'black'
}
},
tooltip : {
show : true
},
legend : {
data : [ '注册数' ]
},
color : '#61a0a8',
axisType : 'category',
xAxis : {
position : "top",
axisLabel : {
formatter : function(value) {
return value + "个";
}
}
},
yAxis : [ {
data : data.c
} ],
series : [ {
"name" : "注册数",
"type" : "bar",
"data" : data.d,
itemStyle : {
normal : {
color : 'orange'
}
},
label : {
normal : {
show : true,
position : 'right',
formatter : function(obj) {
if (obj.value > 0) {
return obj.value + "个";
} else {
return "暂无数据";
}
}
}
}
} ]
};
// 为echarts对象加载数据
myChart.setOption(option);
var myChart2 = echarts.init(document
.getElementById('echarts_test2'));
var option2 = {
title : {
text : '用户注册统计',
subtext : "时间分组统计",
subtextStyle : {
fontSize : 15,
fontWeight : 'bold',
color : 'black'
}
},
tooltip : {
show : true
},
legend : {
data : [ '注册数' ]
},
color : '#61a0a8',
axisType : 'category',
xAxis : {
position : "top",
data : data.c,
axisLabel : {
formatter : function(value) {
return value + "时间段";
}
}
},
yAxis : [ {
type:"value"
} ],
series : [ {
"name" : "注册数",
"type" : "bar",
"data" : data.d,
itemStyle : {
normal : {
color : 'orange'
}
},
label : {
normal : {
show : true,
position : 'top',
formatter : function(obj) {
if (obj.value > 0) {
return obj.value + "个";
} else {
return "暂无数据";
}
}
}
}
} ]
};
// 为echarts对象加载数据
myChart2.setOption(option2);
});
});
});
function operateFormatter(value, row, index) {
return [
'<a class="edit ml10" style="color:black;" href="javascript:void(0)" title="编辑">',
'<span class="glyphicon glyphicon-edit"></span>',
'</a> ',
'<a class="remove ml10" style="color:black;" href="javascript:void(0)" title="删除">',
'<i class="glyphicon glyphicon-remove"></i>', '</a>' ].join('');
}
function hideIdFormatter(value, row, index) {
return "<input type='hidden' value="+value+" name='id' />";
}
window.operateEvents = {
'click .like' : function(e, value, row, index) {
alert('You click like icon, row: ' + JSON.stringify(row));
console.log(value, row, index);
},
'click .edit' : function(e, value, row, index) {
alert($("[data-index=" + index + "]").find('td').eq(8).html());
//alert($("[data-index="+index+"]").find('td').eq(3).text());
$("#waitph").val(
$("[data-index=" + index + "]").find('td').eq(3).text());
$("#edituc").modal("show");
//alert('You click edit icon, row: ' + JSON.stringify(row));
//console.log(value, row, index);
},
'click .remove' : function(e, value, row, index) {
//alert('You click remove icon, row: ' + JSON.stringify(row));
var delid = $("[data-index=" + index + "]").find('td').eq(0)
.children().first().val();
if (confirm("确定删除该条记录吗?" + delid)) {
$.getJSON('user/delete', {
"id" : delid
}, function(data) {
$("#dtb").bootstrapTable('refresh');
});
}
console.log(value, row, index);
}
};
function refreshTable() {
$("table").bootstrapTable('refresh', {
url : $("table").attr('data-url')
});
}
function makeparmter(params) {
params.queryby = $("#queryby").val();
var ret = '';
for ( var i in params) {
ret += i + ':' + params[i];
}
//alert(ret);
return params;
}
function saveUcode() {
//alert($("#waiteduc").val());
//alert($("#waitph").val());
$.post('user/edit', {
"phone" : $("#waitph").val(),
"uc" : $("#waiteduc").val()
}, function() {
//alert('保存成功!');
$("#edituc").modal('hide');
$("#waiteduc").val('');
$("#waitph").val('');
refreshTable();
});
}
function checkToday() {
$("#queryby").val('0');
refreshTable();
}
function checkAll() {
$("#queryby").val('1');
refreshTable();
}
function sys_Exit() {
if (confirm("确定退出系统吗")) {
window.location.href = "route.php?a=exit";
}
}
function exporyToday() {
if (confirm("确定导出当天记录吗?")) {
window.location.href = "user/export";
}
}
function exportAll() {
if (confirm("确定导出所有记录吗?")) {
window.location.href = "route.php?a=export&e=user";
}
}
function dateFormatter(value, row, index) {
return moment.unix(value).format("YYYY-MM-DD hh:mm:ss a");
}
</script>
</head>
<body>
<img src="route.php?a=qrcode¶m=test&size=10" style="position:fixed;bottom:0;left: 0; z-index:99999 ; width:100px;height:100px;" alt="...">
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only"></span> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">后台管理</a>
</div>
<div class="collapse navbar-collapse"
id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class=""><a href="#">Demo</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="visible-xs-block">
<a href="#">欢迎您:<span class="login_username"></span></a>
</li>
<li class="hidden-xs">
<p class="navbar-text">
<span class="glyphicon glyphicon-user"></span> 欢迎您:<span
class="login_username"></span>
</p>
</li>
<li class="hidden-xs">
<p class="navbar-text">
今日共新增<span class="badge" id="xinzeng" style="cursor: pointer;"
onclick="checkToday();">0</span>条数据
</p>
</li>
<li><a href="#" id="sys_exit" onclick="sys_Exit();"><span
class="glyphicon glyphicon-off"></span>退出系统</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<hr>
<div class="row">
<div id="echarts_test" style="height: 200px;" class="col-md-12"></div>
</div>
<div class="row">
<div id="echarts_test2" style="height: 200px;" class="col-md-12"></div>
</div>
<!-- <div class="btn-group btn-group-justified" role="group"
aria-label="...">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default"
onclick="checkToday();">
<span class="glyphicon glyphicon-search"></span> 查询今日数据
</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default" onclick="checkAll();">
<span class="glyphicon glyphicon-hdd"></span> 查询所有数据
</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default"
onclick="exporyToday();">
<span class="glyphicon glyphicon-arrow-down"></span> 导出今日数据到excel
</button>
</div>
</div> -->
<button type="button" class="btn btn-default" onclick="exportAll();">
<span class="glyphicon glyphicon-arrow-down"></span> 导出历史数据到excel
</button>
<table id="dtb" data-toggle="table"
data-url="route.php?a=userlist" class="table table-hover"
data-show-columns="true" data-search="true" data-show-refresh="true"
data-show-toggle="true" data-show-export="true"
data-export-types="['json', 'xml', 'csv', 'txt', 'sql', 'excel']"
data-height="450" data-side-pagination="server"
data-pagination="true" data-page-list="[5, 10, 20, 50, 100, 200]"
data-query-params="makeparmter">
<thead>
<tr>
<th data-field="id" data-formatter="hideIdFormatter" class="hide"></th>
<th data-field="name" data-align="left">姓名</th>
<th data-field="sex" data-align="center">性别</th>
<th data-field="age">年龄</th>
<th data-field="phone">手机号</th>
<th data-field="deliveryaddress">收货地址</th>
<th data-field="adddate" data-formatter="dateFormatter">添加时间</th>
<th data-field="operate" data-formatter="operateFormatter"
data-events="operateEvents">操作</th>
</tr>
</thead>
</table>
<div class="modal fade" id="edituc" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="myModalLabel">编辑当前用户的资料</h4>
</div>
<div class="modal-body">
<input id="waiteduc" type="text" class="form-control" value=""
pattern="" required="required" /> <input id="waitph"
type="hidden" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
<button type="button" class="btn btn-primary"
onclick="saveUcode();">保存</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="xinzengrows" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="myModalLabel">今日新增的用户数据</h4>
</div>
<div class="modal-body">
<table class="table">
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- <script src="//cdn.bootcss.com/echarts/3.0.0/echarts.min.js"></script> -->
</html>