<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>统计</title>
|
[#include "/business/pages/include/static.html" /]
|
[#include "/component/DatePicker.html" /]
|
[#include "/component/newsel.html" /]
|
<script src="${common_static}/static/script/select/chosen.jquery.js"></script>
|
<script src="${common_static}/static/script/select/chosen.jquery.min.js"></script>
|
<link rel="stylesheet" type="text/css" href="${common_static}/static/script/select/chosen.css"/>
|
<script type="text/javascript" src="${common_static}/static/script/statis.js"></script>
|
</head>
|
<body>
|
<div class="event_fill sa_event_fill">
|
<table>
|
<tr>
|
<th width="85%">
|
|
<div class="fill_item">
|
<label>${Constants.CUSTOMER_CONSTANTS}名称:</label>
|
[@sel id="cusId" labelName="cusName" textField="id" valueField="name" source=cusList /]
|
</div>
|
|
<div class="fill_item">
|
<label>按天:</label> <input type="radio" id="forDay" name="tp"
|
class="tp" value="2" checked="checked" />
|
</div>
|
|
<div class="fill_item">
|
<label>按月:</label> <input type="radio" id="forDay" name="tp"
|
class="tp" value="1" />
|
</div>
|
|
<div id="selectDay">
|
<div class="fill_item">
|
<label>开始时间:</label> [@datepicker id="beginDay"
|
value="${beginTime}" class="general" length=8 /]
|
</div>
|
<div class="fill_item">
|
<label>结束时间:</label> [@datepicker id="endDay" class="general"
|
length=8 value="${endTime}" /]
|
</div>
|
</div>
|
|
<div id="selectMonth" style="display:none;">
|
<div class="fill_item">
|
<label>开始月份:</label> [@datepicker id="beginMonth"
|
value="${beginMonth}" class="general" length=6 /]
|
</div>
|
<div class="fill_item">
|
<label>结束月份:</label> [@datepicker id="endMonth" class="general"
|
length=6 value="${endMonth}" /]
|
</div>
|
</div></th>
|
<td width="15%"><a class="retrievebtn" href="javascript:window.location.reload(true);">重置</a>
|
<a class="retrievebtn focus" href="javascript:query();">查询</a></td>
|
</tr>
|
</table>
|
</div>
|
<div class="statnan clearfix">
|
<div class="statnan_left">
|
<div id="pieChart" style="width:98%;height:95%;"></div>
|
</div>
|
<div class="clearfix"></div>
|
</div>
|
<script type="text/javascript">
|
$("#cusId").chosen({
|
no_results_text: "没有找到结果!",//搜索无结果时显示的提示
|
search_contains:true, //关键字模糊搜索,设置为false,则只从开头开始匹配
|
allow_single_deselect:true, //是否允许取消选择
|
max_selected_options:1 //当select为多选时,最多选择个数
|
});
|
//无数据显示
|
function showNoData(containerId) {
|
var strHrml = '<div id="noDailyReport" style="position:relative;width:100%;height:400px">';
|
strHrml = strHrml + '<span class="nodata"></span>';
|
strHrml = strHrml + '</div>';
|
$('#'+containerId).html(strHrml);
|
}
|
|
initSplineStyle();
|
var beginTime;
|
var endTime;
|
var type;
|
$(function() {
|
query();
|
$(".tp").click(function() {
|
var typeValue = $(this).val();
|
if (typeValue == 1) {
|
$("#selectMonth").show();
|
$("#selectDay").hide();
|
} else {
|
$("#selectDay").show();
|
$("#selectMonth").hide();
|
}
|
});
|
})
|
|
function query() {
|
var tp = $(":radio.tp:checked").val();
|
if (tp == 2) {
|
beginTime = $("#beginDay").val();
|
endTime = $("#endDay").val();
|
if (beginTime > endTime) {
|
popupTips("开始时间不能晚于结束时间");
|
return;
|
}
|
|
// if (getDays(beginTime, endTime) > 30) {
|
// popupTips("时间间隔不能超过30天");
|
// return;
|
// }
|
type = 'day';
|
} else {
|
beginTime = $("#beginMonth").val();
|
endTime = $("#endMonth").val();
|
if (beginTime > endTime) {
|
alert("开始时间不能晚于结束时间");
|
return;
|
}
|
// if (getMonth(beginTime, endTime) > 24) {
|
// popupTips("时间间隔不能超过24个月");
|
// return;
|
// }
|
type = 'month';
|
|
}
|
showPieChart();
|
}
|
|
|
function showPieChart() {
|
var cusId = $.trim($("#cusId").val());
|
var param = {"cusId":cusId,"beginTime":beginTime,"endTime":endTime,"type":type}
|
$.post("${base}/business/pages/tj/incidentStatis/getIncidentHappendTimeLine.html",param, function(data, textStatus) {
|
if(data.nodata){
|
showNoData('pieChart');
|
}else{
|
createPieChart(data);
|
}
|
}, "json")
|
}
|
|
function createPieChart(data) {
|
$('#pieChart').highcharts({
|
title: {
|
text: '事件发生时间统计'
|
},
|
xAxis: {
|
categories: data.categories
|
},
|
plotOptions: {
|
spline: {
|
marker: {
|
enabled: true
|
}
|
}
|
},
|
yAxis: {
|
title: {
|
text: '数量(个)'
|
}
|
},
|
tooltip: {
|
valueSuffix: '个'
|
},
|
series: data.series
|
});
|
}
|
</script>
|
</body>
|
</html>
|