E9Upgrade.jsp 3.12 KB
<%@ 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>