first commit
This commit is contained in:
47
WebRoot/jsp/fwk/mainPageImg.jsp
Normal file
47
WebRoot/jsp/fwk/mainPageImg.jsp
Normal file
@ -0,0 +1,47 @@
|
||||
<%@ 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>
|
||||
|
||||
<style type="text/css">
|
||||
</style>
|
||||
|
||||
<script type="text/javascript">
|
||||
function initMenu() {
|
||||
|
||||
//根据分辨率自适应
|
||||
var wid = $(window).width();
|
||||
var hei = $(window).height();
|
||||
$('#divbottom').height(hei);//顶部工具栏固定30px 其余为下面div高度
|
||||
|
||||
}
|
||||
|
||||
window.onresize = function () {
|
||||
initMenu();
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="initMenu();">
|
||||
<div id="mainAlertdiv"></div>
|
||||
<div id="subDiv"></div>
|
||||
<div id="subDiv_recordDetail"></div>
|
||||
|
||||
<div style="width:100%;" id="divbottom">
|
||||
<img src="<%=request.getContextPath()%>/IMG/login/临时首页.jpg" style="width:100%;height:100%;">
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user