张家口产业监测
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.
 
 
 
 

121 lines
4.7 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ include file="/common/ctx.jsp"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="${ctx }/hbcyjc/resource/css/cjy_style.css" />
<script type="text/javascript" src="${ctx }/hbcyjc/resource/js/jquery.min.js"></script>
<script type="text/javascript" src="${ctx }/hbcyjc/resource/js/echarts/echarts.min.js"></script>
<script type="text/javascript" src="https://echarts.baidu.com/gallery/vendors/echarts/map/js/china.js"></script>
<script type="text/javascript" src="https://echarts.baidu.com/gallery/vendors/echarts/map/js/world.js"></script>
<title>客源地分析</title>
</head>
<body style="height:1080px; width:1920px;">
<input type="text" id="ttype" name="ttype" value="MONTH"/>
<input type="text" id="ttime" name="ttime" value="2019-01"/>
<input type="text" id="areacode" name="areacode" value="13"/>
<div class="xingk_nr"></div>
<div class="header">
<h3 class="header_bt">客源地分析</h3>
<a href="#" class="nav" id="showLeft"><i class="nav_icon icon_caidan"></i>菜单</a>
<a href="${ctx }/hbcyjc/index.jsp" class="nav_home"><i class="nav_icon icon_zhuye"></i>首页</a>
<div class="kll_link">
<a href="${ctx }/hbcyjc/kll/index.jsp" class="right_sec">
<em class="return_icon"></em>返回
</a>
</div>
</div>
<div class="jqfx_gxsj"></div>
<div class="zuoce cbp-spmenu-left" id="cbp-spmenu-s1">
<a href="${ctx }/hbcyjc/kll/index.jsp" class="on"><i class="nav_icon icon_zhuye"></i>客流量监测</a>
<a href="${ctx }/hbcyjc/basicresources/basicresources.jsp"><i class="nav_icon icon_zhuye"></i>旅游基础资源</a>
<a href="${ctx }/hbcyjc/network/network_all.jsp"><i class="nav_icon icon_zhuye"></i>旅游网评分析</a>
<a href="${ctx }/hbcyjc/complaint/complaint.jsp"><i class="nav_icon icon_zhuye"></i>旅游投诉分析</a>
<a href="#"><i class="nav_icon icon_zhuye"></i>视频监控管理</a>
<a href="${ctx }/hbcyjc/cll/cll_flow.jsp"><i class="nav_icon icon_zhuye"></i>车流量分析</a>
<a href="${ctx }/hbcyjc/kll/kll_currtime.jsp"><i class="nav_icon icon_zhuye"></i>客流量实时监测</a>
</div>
<div class="" style="position:absolute; top:760px; left:25px;" >
<div class="w920 left mr20" style="margin-right:30px">
<h3 class="box_bt">游客逗留天数</h3>
<div class="box_top_s2"></div>
<div class="box_center_s2" style=" height:220px;">
<div class="pos_rla">
<div class="dl_diw">
<h4 class="dl_day" id="day_html">0</h4>
<p>平均逗留(天数)</p>
</div>
<div class="dl_tb_wp">
<div id="klldaytl" style="width: 100%; height: 220px;"></div>
</div>
</div>
</div>
<div class="box_bottom_s2"></div>
</div>
<div class="w920 left">
<h3 class="box_bt">游客逗留时间</h3>
<div class="box_top_s2"></div>
<div class="box_center_s2" style=" height:220px;">
<div class="pos_rla">
<div class="dl_diw">
<h4 class="dl_time" id="hour_html">0.0</h4>
<p>平均逗留(小时)</p>
</div>
<div class="dl_tb_wp">
<div id="kllhourtl" style="width: 100%; height: 220px;"></div>
</div>
</div>
</div>
<div class="box_bottom_s2"></div>
</div>
<div style="clear:both"></div>
</div>
<!--右侧滑动-->
<script src="${ctx }/hbcyjc/resource/js/admin.js" type="text/javascript"></script>
<!--左侧滑动菜单-->
<script src="${ctx }/hbcyjc/resource/js/classie.js"></script>
<script>
var menuLeft = document.getElementById( 'cbp-spmenu-s1' ),
showLeft = document.getElementById( 'showLeft' ),
body = document.body;
showLeft.onclick = function() {
classie.toggle( this, 'active' );
classie.toggle( menuLeft, 'cbp-spmenu-open' );
disableOther( 'showLeft' );
};
function disableOther( button ) {
if( button !== 'showLeft' ) {
classie.toggle( showLeft, 'disabled' );
}
}
</script>
<!-- 游客逗留天数 -->
<script src="${ctx }/hbcyjc/kll/kll_stay/kll_day.js"></script>
<!-- 游客逗留小时 -->
<script src="${ctx }/hbcyjc/kll/kll_stay/kll_hour.js"></script>
<script type="text/javascript">
//初始化数据
$(function(){
init();
});
function init(){
var ttype = document.getElementById("ttype").value;
var ttime = document.getElementById("ttime").value;
var areacode = document.getElementById("areacode").value;
ajaxKllDayStay(ttype, ttime, areacode);//游客逗留天数
ajaxKllHourStay(ttype, ttime, areacode);//游客逗留小时
}
</script>
</body>
</html>