Newer
Older
alarm / WebRoot / common / layout / device-data-report.jsp
zhout on 2 Mar 2022 834 bytes first commit
<%@ page language="java" pageEncoding="UTF-8"%>
<%@include file="/taglibs.jsp"%>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" content="ie=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
</head>
<body>
	<div id="printBtn">
	    <button onclick="javascript:window.print();">打印</button>
	</div>
	<div id="content"></div>
</body>
</html>
<script type="text/javascript"
	src="${ctx}/s/jquery-easyui-1.3.2/jquery-1.8.0.min.js"></script>
<script type="text/javascript">
    $("#content").html("");
    var alarmContent = window.parent.document.getElementById("deviceDataReportHtml").innerHTML;
    $("#content").html(alarmContent);
</script>