skippackage.jsp
3.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<%@ 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>
<script type="text/javascript" src="/js/jquery/jquery_wev8.js"></script>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<script type="text/javascript">
function next() {
window.location.href="/updateclient/upgradefiles.jsp";
}
function cancel() {
window.location.href="/updateclient/selectZip.jsp";
}
var dWidth = 600;
var dHeight = 500;
function doOpen(url,title){
if(typeof dialog == 'undefined' || dialog==null){
dialog = new window.top.Dialog();
}
dialog.currentWindow = window;
dialog.Title = title;
dialog.Width = dWidth || 500;
dialog.Height = dWidth || 300;
dialog.Drag = true;
dialog.maxiumnable = true;
dialog.URL = url;
dialog.show();
}
function openMessage() {
doOpen("/updateclient/upgradeHistoryInfo.jsp","补丁包信息");
}
</script>
</head>
<%
String message = Util.null2String((String)request.getSession(true).getAttribute("message"));
String titlename="";
String checklevel = Util.null2String(baseBean.getPropValue("ecologyupdate","checklevel"));
%>
<%@ include file="/updateclient/systeminfo/TopTitle_Upgrade.jsp" %>
<%@ include file="/updateclient/systeminfo/RightClickMenuConent_Upgrade.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="/updateclient/systeminfo/RightClickMenu_Upgrade.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">
<div style="height:380px;">
<div style="height:370px;width:100%;float:right;margin-top:10px;">
<div style="height:100%;width:100%;margin-left:-10px;">
<div style="margin-top:10px;text-align: center;" >
<img src="/images/ecology8/noright_wev8.png" width="162px" height="162px"/>
</div>
<div style="margin-top:10px;height:60px;text-align: center;line-height:60px;font-size: 18px;" >
升级跳包,升级终止。<a href="javascript:openMessage()" style="color:blue">请点击此处查看详情</a><br>
<br>
如果确认遗漏包可以继续升级,请在升级页面点击“下一步”继续升级;<br>如果遗漏包不可忽略,请点击“主节点升级”菜单取消此次升级,并依次覆盖遗漏包文件,重新升级。
<% if("0".equals(checklevel)) {%>
<%} %>
</div>
</div>
</div>
</div>
</div>
<div>
</div>
</body>
</html>