user.html
3.98 KB
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
<include file="public/layout" />
<script src="__PUBLIC__/static/js/layer/laydate/laydate.js"></script>
<body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;">
<div id="append_parent"></div>
<div id="ajaxwaitid"></div>
<div class="page">
<div class="fixed-bar">
<div class="item-title">
<div class="subject">
<h3>统计报表 - 会员统计</h3>
<h5>网站系统会员统计</h5>
</div>
</div>
</div>
<!-- 操作说明 -->
<div class="explanation">
<div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
<h4 title="提示相关设置操作时应注意的要点">操作提示</h4>
<span title="收起提示" id="explanationZoom" style="display: block;"></span>
</div>
</div>
<div class="flexigrid">
<div class="mDiv">
<div class="ftitle">
<h3>会员统计</h3>
<h5>今日新增会员:{$user.today}|本月新增会员:{$user.month}|会员总数:{$user.total}|会员余额总额:{$user.user_money}|有单会员数:{$user.hasorder}</h5>
</div>
<div title="刷新数据" class="pReload"><i class="fa fa-refresh"></i></div>
<form class="navbar-form form-inline" id="search-form" method="get" action="{:U('Report/index')}" onsubmit="return check_form();">
<input type="hidden" name="timegap" id="timegap" value="{$timegap}">
<div class="sDiv">
<div class="sDiv2" style="margin-right: 10px;">
<input type="text" size="30" id="start_time" value="{$start_time}" placeholder="起始时间" class="qsbox">
<input type="button" class="btn" value="起始时间">
</div>
<div class="sDiv2" style="margin-right: 10px;">
<input type="text" size="30" id="end_time" value="{$end_time}" placeholder="截止时间" class="qsbox">
<input type="button" class="btn" value="截止时间">
</div>
<div class="sDiv2">
<input class="btn" value="搜索" type="submit">
</div>
</div>
</form>
</div>
<div id="statistics" style="height: 400px;"></div>
</div>
</div>
<script src="__PUBLIC__/js/echart/echarts.min.js" type="text/javascript"></script>
<script src="__PUBLIC__/js/echart/macarons.js"></script>
<script src="__PUBLIC__/js/echart/china.js"></script>
<script src="__PUBLIC__/dist/js/app.js" type="text/javascript"></script>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('statistics'),'macarons');
var res = {$result};
option = {
title : {
text: '会员新增趋势'
},
tooltip : {
trigger: 'axis'
},
legend: {
data:['新增会员','有单会员']
},
toolbox: {
show : true,
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
magicType : {show: true, type: ['line', 'bar']},
restore : {show: true},
saveAsImage : {show: true}
}
},
calculable : true,
xAxis : [
{
type : 'category',
boundaryGap : false,
data : res.time
}
],
yAxis : [
{
type : 'value',
axisLabel : {
formatter: '{value} 人'
}
}
],
series : [
{
name:'新增会员',
type:'line',
data:res.data
}
]
};
myChart.setOption(option);
$(document).ready(function(){
// 表格行点击选中切换
$('#flexigrid > table>tbody >tr').click(function(){
$(this).toggleClass('trSelected');
});
// 点击刷新数据
$('.fa-refresh').click(function(){
location.href = location.href;
});
$('#start_time').layDate();
$('#end_time').layDate();
});
function check_form(){
layer.msg('加载中...', {icon: 16,shade: [0.5, '#f5f5f5'],scrollbar: false,offset: '10px', time:100000}) ;
var start_time = $.trim($('#start_time').val());
var end_time = $.trim($('#end_time').val());
if(start_time == '' ^ end_time == ''){
layer.alert('请选择完整的时间间隔', {icon: 2});
return false;
}
if(start_time !== '' && end_time !== ''){
$('#timegap').val(start_time+" - "+end_time);
}
if(start_time == '' && end_time == ''){
$('#timegap').val('');
}
return true;
}
</script>
</body>
</html>