keyCheck.jsp
2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/updateclient/systeminfo/init_wev8.jsp"%>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<jsp:useBean id="baseBean" class="weaver.general.BaseBean" scope="page"/>
<html>
<head>
<title> E-cology升级程序</title>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<script type="text/javascript">
function next() {
top.Dialog.confirm("确认可以忽略文件差异",function(){
window.location.href="/updateclient/check.jsp?next=1";
},function(){
});
}
function cancel() {
window.location.href="/updateclient/selectZip.jsp";
}
</script>
</head>
<%
String message = Util.null2String((String)request.getAttribute("message"));
String titlename="";
String checklevel = Util.null2String(baseBean.getPropValue("ecologyupdate","checklevel"));
%>
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<jsp:include page="/updateclient/systeminfo/commonTabHead.jsp?step=2">
<jsp:param name="mouldID" value="upgrade" />
<jsp:param name="navName" value="本地升级" />
</jsp:include>
<table id="topTitle" cellpadding="0" cellspacing="0">
<tr>
<td></td>
<td class="rightSearchSpan" style="text-align:right; width:500px!important">
<%if("0".equals(checklevel)) { %>
<input type="button" value="<%=SystemEnv.getHtmlLabelName(1402 ,user.getLanguage()) %>" class="e8_btn_top" onclick="next()"/>
<% }%>
<input type="button" value="<%=SystemEnv.getHtmlLabelName(31129 ,user.getLanguage()) %>" class="e8_btn_top" onclick="cancel()"/>
</td>
</tr>
</table>
<%
if("0".equals(checklevel)) {
RCMenu += "{"+SystemEnv.getHtmlLabelName(1402,user.getLanguage())+",javascript:next(),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
}
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<body>
<div style="width:24%;height:100%;float:left;background:#fcfcfc;">
<jsp:include page="step.jsp"></jsp:include>
</div>
<div style="width:75%;height:100%;float:right">
<jsp:include page="/updateclient/keyCheckList.jsp"></jsp:include>
</div>
<div>
</div>
</body>
</html>