BaseMain.jsp
1.45 KB
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ include file="/systeminfo/init_wev8.jsp"%>
<%
int type = Util.getIntValue(request.getParameter("type"),1);
String defaultpage = "BaseFrame.jsp";
if(type==2){
defaultpage = "AccessItemList.jsp";
}
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN">
<head>
<title>绩效考核方案基础设置</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET />
<%@ include file="/secondwev/common/head.jsp" %>
</head>
<body style="overflow: hidden;" id="bodyId">
<div id="dLeft" style="width:100%;height:36px;">
<iframe name="pageTop" src="BaseMenu.jsp?type=<%=type %>" style="width: 100%;height:100%;" scrolling="auto" frameborder="0"></iframe>
</div>
<div id="dCenter" style="width:100%;height:100%;background: #fff;">
<iframe name="pageBottom" src="<%=defaultpage %>" style="width: 100%;height:100%;" scrolling="auto" frameborder="0"></iframe>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#dCenter").height($("BODY").height()-$("#dLeft").height()-10);
$(window).resize(function(){
$("#dCenter").height($("BODY").height()-$("#dLeft").height()-10);
});
});
</script>
</body>
</html>