36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
<%@page import="com.sipai.tools.CommString" %>
|
|
<%@ page language="java" pageEncoding="UTF-8" %>
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
|
|
<%@ page import="com.sipai.entity.base.ServerObject" %>
|
|
<%@ taglib uri="http://www.springsecurity.org/jsp" prefix="security" %>
|
|
<!DOCTYPE html>
|
|
<!-- <html lang="zh-CN"> -->
|
|
<!-- BEGIN HEAD -->
|
|
<head>
|
|
<title><%= ServerObject.atttable.get("TOPTITLE")%>
|
|
</title>
|
|
<!-- 引用页头及CSS页-->
|
|
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
|
<script type="text/javascript">
|
|
|
|
function initMenu() {
|
|
var height = $(window).height();
|
|
$('#psmsDiv').css('height', height-10);//页面加载先给高度
|
|
}
|
|
|
|
window.onresize = function () {
|
|
initMenu();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="initMenu()" class="hold-transition ${cu.themeclass} sidebar-mini">
|
|
<div class="wrapper" style="height:100%;width:100%;">
|
|
<div class="content-wrapper" style="height:100%;width:100%;">
|
|
<iframe src="http://10.28.25.147:9005/" id="psmsDiv" style="width:100%;height:100%;"></iframe>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |