<!doctype html>
|
<html>
|
<head>
|
[#include "/business/wechat/include/title.html" /]
|
[#include "/business/wechat/include/wheader.html" /]
|
<script type="text/javascript" src="${common_static}/static/wechat/style/js/jquery.nicescroll.js"></script>
|
</head>
|
|
<body>
|
<header class="kltit"><label class="check taskoption"></label><a href="${base}/uwyw/stats/uIncidentStats/incidentStatsIndex.html" ><span></span></a>事件平均处理时长报表</header>
|
[#if report??&&report?size>0]
|
<script>
|
$(document).ready(function() {
|
var nicesx = $("#boxscroll").niceScroll("#boxscroll div",{touchbehavior:true,cursorcolor:"#FF00FF",cursoropacitymax:0.6,cursorwidth:24,usetransition:true,hwacceleration:true,autohidemode:"hidden"});
|
});
|
</script>
|
<div class="statistics-title">事件平均处理时长统计</div>
|
<div class="client-name"><span>${cusName}</span><p>${beginTime}-${endTime}</p></div>
|
<div class="searchCon">
|
<table class="tableName">
|
<tbody><tr>
|
[#if report.lebalList??&&report.lebalList?size>0]
|
[#list report.lebalList as item]
|
[#if item_index==0]
|
<th>${item}</th>
|
[/#if]
|
[/#list]
|
[/#if]
|
</tr>
|
[#if report.dataList??&&report.dataList?size>0]
|
[#list report.dataList as dataList]
|
<tr>
|
[#list dataList as item]
|
[#if item_index==0]
|
<td>${item}</td>
|
[/#if]
|
[/#list]
|
</tr>
|
[/#list]
|
[/#if]
|
</tbody></table>
|
<div id="boxscroll">
|
<div>
|
<table class="tableName">
|
<tbody><tr>
|
<!-- 标题栏 -->
|
[#if report.lebalList??&&report.lebalList?size>0]
|
[#list report.lebalList as item]
|
[#if item_index !=0]
|
<th>${item}</th>
|
[/#if]
|
[/#list]
|
[/#if]
|
</tr>
|
|
<!-- 数据栏 -->
|
[#if report.dataList??&&report.dataList?size>0]
|
[#list report.dataList as dataList]
|
<tr>
|
[#list dataList as item]
|
[#if item_index !=0]
|
<td>${item}</td>
|
[/#if]
|
[/#list]
|
</tr>
|
[/#list]
|
[/#if]
|
</tbody></table>
|
</div>
|
</div>
|
</div>
|
[/#if]
|
<script type="text/javascript">
|
n=$('.kltwowrap a').size();
|
var wh=100*n+"%";
|
$('.kltwowrap').width(wh);
|
var lt=(100/n/4);
|
var lt_li=lt+"%";
|
$('.kltwowrap a').width(lt_li);
|
$(".kltwowrap a").on('touchstart mousedown',function(e){
|
e.preventDefault()
|
$(".kltwowrap .active").removeClass('active');
|
$(this).addClass('active');
|
tabsSwiper.slideTo($(this).index());
|
});
|
|
$(".kltwowrap a").click(function(e){
|
e.preventDefault();
|
});
|
|
var tabsSwiper = new Swiper(".swiper-container",{
|
setWrapperSize :true,
|
onSlideChangeStart: function(sw){
|
$(".kltwowrap .active").removeClass('active');
|
$(".kltwowrap a").eq(tabsSwiper.activeIndex).addClass('active');
|
|
//sw.width
|
var currTab = $(".kltwowrap a").eq(tabsSwiper.activeIndex);
|
/*if(currTab.width()*sw.activeIndex +10 > sw.width){
|
currTab.parent().css("left",-currTab.width()*sw.activeIndex);
|
}else{
|
currTab.parent().css("left",0);
|
}*/
|
currTab.parent().css("left",-parseInt(sw.activeIndex/4)*sw.width);
|
}
|
});
|
|
$(function(){
|
|
$('.check').click(function(){
|
window.location.href='${base}/uwyw/stats/uIncidentStats/incidentSearchReport.html?statsType=${RequestParameters.statsType}';
|
});
|
})
|
</script>
|
</body>
|
</html>
|