E9Upgrade.jsp
3.12 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
98
99
100
101
102
103
104
105
106
107
108
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="weaver.general.*" %>
<%@ page import="com.alibaba.fastjson.JSONObject" %>
<html>
<%
%>
<script type="text/javascript" src="/system/upgradetoe9/js/jquery-1.8.3.min_wev8.js"></script>
<link rel="stylesheet" href="/system/upgradetoe9/css/seachBody_wev8.css" type="text/css" />
<script type="text/javascript" src="/system/upgradetoe9/js/upgradeDialog.js"></script>
<head>
<title>E9-数据库迁移工具</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
.dropdown-content a {
color: white!important;
font-size: small;
font-weight: bold;
padding: 16px 0px 12px 20px;
text-decoration: none;
display: block;
/*background-color: #374768;*/
}
.tooltitle a{
font-size: small;
height: 61px;
font-weight: bold;
text-decoration: none;
display: block;
color: white;
text-align: center;
line-height: 61px;
/*background-color: #0eafd3;*/
background-color: #3f73c4;
/*background-color: #008df7;*/
}
.tooltop a{
height: 56px;
text-decoration: none;
line-height: 56px;
margin-left:30px;
font-size:15px!important;
color:black;
display:inline-block;
}
.tooltop .topactive{
color:#68cffa;
border-bottom: 5px solid #2db7f5;
}
.tooltop {
border-top: 0.2px solid #f4f4f4;
}
.dropdown-content a:hover {
background-color: #223152!important;
}
.button-li:hover{
background-color: #3f73C4;
}
.active{
background-color:#3f73C4;
}
.active a{
background-color: #223152;
}
html{
height:100%!important;
}
</style>
</head>
<body style="width:99%;height:98%;">
<table style="width: 100%;height: 100%;" cellspacing="0" cellpadding="0" >
<tr style="width: 100%;height:61px;">
<td style="padding:0px;width:12%;min-width:230px;vertical-align:top;background-color: #374768">
<div id="" class="tooltitle">
<a href="#" onclick="" style="font-size:15px">e-cology | E9数据库迁移工具</a>
</div>
</td>
<td style="width:88%;valign:top" id="righttd">
<div id="tooltop" class="tooltop" style="background:#fff;float:left;width:100%">
<a href="#" class="topactive" urllink="MigrationMain.jsp">数据库迁移工具</a>
<a href="#" urllink="MigrationDoc.jsp">操作说明</a>
</div>
</td>
</tr>
<tr style="width: 100%;height:100%;">
<td colSpan=2 style="height:100%;">
<iframe id="urliframe" style="border:0px;height:100%;width:100%" src="MigrationMain.jsp"></iframe>
</td>
</tr>
</table>
</body>
</html>
<script type="text/javascript">
$(document).ready(function(){
$(".tooltop>a").bind("click",function(){
$(".topactive").removeClass("topactive");
$(this).addClass("topactive");
var url = $(this).attr("urllink");
$("#urliframe").attr("src", url);
});
});
</script>