FunnelChartHelp.jsp 1.73 KB
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ include file="/mobilemode/init.jsp"%>
<html>
<head>
	<title></title>
	<style>
	*{
		font-family: 'Microsoft YaHei', Arial;
	}
	html,body{
		height: 100%;
		margin: 0px;
		padding: 0px;
	}
	.dataTable{
		border-collapse: collapse;
		margin: 5px 0px; 
	}
	.dataTable td{
		border: 1px solid #ccc;
		padding: 3px 10px;
	}
	.dataTable tr.header td{
		font-weight: bold;
		background-color: #f8f8f8;
	}
	</style>
<script type="text/javascript">
function onClose(){
	if(top && top.closeTopDialog){
		top.closeTopDialog();
	}else{
		window.close();
	}
}
</script>
</head>
<body>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>

<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(309,user.getLanguage())+",javascript:onClose(),_top} " ;  //关闭
RCMenuHeight += RCMenuHeightStep ;
%>

<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<div style="text-align:center">
<img src="/mobilemode/images/FunnelChartHelp.png" style="width: 435px;height: 327px;">
</div>
<div style="padding-left: 15px;">
<%=SystemEnv.getHtmlLabelName(127606,user.getLanguage())%><!-- 以上图中的图表为例,其SQL返回的数据如下: -->
<table class="dataTable">
	<tr class="header">
		<td>name</td>
        <td>value</td>
	</tr>
	<tr>
		<td>北京</td>
		<td>16800</td>
	</tr>
	<tr>
		<td>上海</td>
		<td>5800</td>
	</tr>
	<tr>
		<td>广州</td>
		<td>7263</td>
    </tr>
    <tr>
		<td>武汉</td>
		<td>8406</td>
	</tr>
</table>
<div style="line-height: 20px;">
    <%=SystemEnv.getHtmlLabelName(384910,user.getLanguage())%><!-- 其中第一列为图表的类别名称 --><br/>
    <%=SystemEnv.getHtmlLabelName(384911,user.getLanguage())%><!-- 第二列为具体的数据值 --><br/>
</div>
</div>
</body>
</html>