You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.6 KiB
122 lines
3.6 KiB
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ include file="/common/ctx.jsp"%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title>运营商上传数据监测</title>
|
|
<style type="text/css">
|
|
table
|
|
{
|
|
border-collapse:collapse;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<script src="${ctx}/js/jquery-1.8.3.min.js"></script>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
var inners = new Array();
|
|
var nums = ${nums};
|
|
var list = new Array();
|
|
var json = ${json};
|
|
if(nums!=null && json!=null){
|
|
var htmlcode = "<table border=\"1\" cellpadding=\"10px\"><tr>";
|
|
/* for(var i=0;i<nums;i++){
|
|
inners.push(json[i].iname);
|
|
};
|
|
for(var i=0;i<inners.length;i++){
|
|
if((i+1)%nums==1){
|
|
htmlcode+="<td>接口名(日期)</td>";
|
|
}
|
|
htmlcode+="<td>"+inners[i]+"</td>";
|
|
} */
|
|
for(var i=0;i<nums;i++){
|
|
if((i+1)%nums==1){
|
|
htmlcode+="<td width='7%'>接口名(日期)</td>";
|
|
}
|
|
htmlcode+="<td>"+json[i].iname+"</td>";
|
|
}
|
|
|
|
htmlcode+="</tr>";
|
|
for(var i=0;i<json.length;i++){
|
|
if((i+1)%nums==1){
|
|
htmlcode+="<tr><td>"+json[i].dates+"</td>";
|
|
}
|
|
var incNum = json[i].increment;
|
|
if(incNum<=0){
|
|
htmlcode+="<td><span><font color=\"#FF0000\"><b>"+json[i].nums+"<br/>(↑"+json[i].increment+")</b></font></span></td>";
|
|
}else{
|
|
htmlcode+="<td>"+json[i].nums+"<br/>(↑"+json[i].increment+")</td>";
|
|
}
|
|
if((i+1)%nums==0){
|
|
htmlcode+="</tr>";
|
|
}
|
|
}
|
|
|
|
$("#operatorDataDetail").html(htmlcode);
|
|
};
|
|
|
|
});
|
|
</script>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
$("tr:gt(0)").mouseover(function(){
|
|
$(this).css('background-color','lightblue');
|
|
});
|
|
|
|
$("tr:gt(0)").mouseout(function(){
|
|
$(this).css('background-color','white');
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- <h1>运营商上传数据量:</h1><br> -->
|
|
<div id="operatorDataDetail">
|
|
<p>查询运营商上传数据详细信息错误,请联系管理员!!!</p>
|
|
<%-- <table border="1" cellpadding="10px" >
|
|
<tr>
|
|
<td>接口名</td>
|
|
<td>基站客流量统计</td>
|
|
<td>客户来源汇总统计</td>
|
|
<td>地市客户来源汇总统计</td>
|
|
<td>全国用户逗留时长</td>
|
|
<td>省内省外客源分析</td>
|
|
<td>省内省外关键词搜索</td>
|
|
<td>景区搜索量</td>
|
|
<td>景区客流乘坐交通工具</td>
|
|
<td>景区客流省内轨迹</td>
|
|
<td>外省漫入用户逗留时长</td>
|
|
<td>旅游投诉</td>
|
|
<td>网评信息</td>
|
|
<td>省内省外客源人群特征</td>
|
|
</tr>
|
|
|
|
<c:if test="${!empty list }">
|
|
<c:forEach items="${list }" var="c" varStatus="status">
|
|
<tr>
|
|
<td>${c.date }</td>
|
|
<td>${c.basestationcount }</td>
|
|
<td>${c.clientfromnum }</td>
|
|
<td>${c.citysourcecount }</td>
|
|
<td>${c.userstaylength }</td>
|
|
<td>${c.sourceanalysis }</td>
|
|
<td>${c.keywordsearch }</td>
|
|
<td>${c.scenicsearch }</td>
|
|
<td>${c.scenicvehicle }</td>
|
|
<td>${c.trackinprovince }</td>
|
|
<td>${c.userstaytime }</td>
|
|
<td>${c.tourcomplain }</td>
|
|
<td>${c.netcomments }</td>
|
|
<td>${c.touristsfeatrue }</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</c:if>
|
|
|
|
--%>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|