MigrationReport.jsp 5.04 KB
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ page import="java.io.File" %>
<%@ page import="weaver.general.GCONST" %>
<%@ page import="weaver.upgradetool.dbupgrade.upgrade.PropUtil" %>
<%@ page import="com.alibaba.fastjson.JSONObject" %>
<%@ page import="weaver.upgradetool.dbupgrade.upgrade.ToolUtil" %>
<%@ page import="java.util.LinkedHashMap" %>
<%@ page import="weaver.upgradetool.dbupgrade.upgrade.DBUpgradeProcess" %>
<%@ page import="weaver.upgradetool.dbupgrade.actions.upgrade.ReportAction" %>
<%@ include file="/system/upgradetoe9/DBUpgradeInit.jsp"%>
<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" />

<head>
    <title> E-cology迁移程序</title>
    <style>
        TABLE {
            FONT-SIZE: 9pt;
            FONT-FAMILY: Verdana;
        }
        BODY {
            FONT-SIZE: 9pt;
            MARGIN: 0px;
            FONT-FAMILY: Verdana;
            LIST-STYLE-TYPE: circle;
        }

        input,select,textarea{
            /*border:#e7e7e7 1px solid;*/
            vertical-align:middle;
        }


        input,select{
            line-height:24px;
            height:24px;
        }

        table input{
            border: 1px solid #ccc!important;
            border-radius: 3px;/* !*css3属性IE不支持*!*/
            padding: 6px 0px 5px 10px;
        }
        .progressbar{
            width: 98%;
            /* margin-left: 10%;*/
            border-radius: 7px;
            border: 1px solid #008000;
            float: left;
            -webkit-box-shadow: 3px 3px 3px #ADADAD;
            -moz-box-shadow: 3px 3px 3px #ADADAD;
            box-shadow: 3px 3px 3px #ADADAD;
        }
        .btn-primary{
            height: 25%;
            text-decoration:none;
            background:#337AB7;
            color:#f2f2f2;
            padding: 0 20px 0 20px;
            font-size:14px;
            font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
            /*font-weight:bold;*/
            border-radius:5px;

            -webkit-transition:all linear 0.10s;
            -moz-transition:all linear 0.10s;
            transition:all linear 0.10s;

        }
        .btn-primary:hover{
            background:#286090;
        }
        .btn-success{
            height: 25%;
            text-decoration:none;
            background:#5CB85C;
            color:#f2f2f2;
            padding: 0 20px 0 20px;
            font-size:14px;
            font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
            /*font-weight:bold;*/
            border-radius:5px;
        }
        .btn-success:hover{
            background:#b8b1b6;
        }
        .btn-success-disabled:hover{
            background:#5CB85C;
        }
        .btn-success-disabled{
            height: 25%;
            text-decoration:none;
            background: #b8b1b6;
            color:#f2f2f2;
            padding: 0 20px 0 20px;
            font-size:14px;
            font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
            /*font-weight:bold;*/
            border-radius:5px;

        }

        .e8_btn_disabled{
            border:0px;cursor:pointer;
            padding-left:0;
            padding-left:10px;
            padding-right:10px;
            height:30px;
            line-height:30px;

            background-color:#959595;
            color:white;
            width:auto;
        }
        .e8_btn_submit{
            border:0px;cursor:pointer;
            padding-left:0;
            padding-left:10px;
            padding-right:10px;
            height:30px;
            line-height:30px;

            background-color:#558ED5;
            color:white;
            width:auto;
        }
        .e8_btn_submit_hover{
            background-color:#0170C1 !important;
            color:white;
        }
        .migrationIframe{
            height: 98%;
            width:98%;
            border:0px;
            padding-left:1%;
            border-top:0px solid #DADADA;
        }
    </style>

</head>
<%
    String titlename = "";
    String currentProcess="获得迁移报告";
%>
<jsp:include page="/system/upgradetoe9/CommonTabHead.jsp">
    <jsp:param name="mouldID" value="upgrade"/>
    <jsp:param name="step" value="<%=currentStep%>"/>
    <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">
            <button style="margin-right:10px;" id="next" type="button" name="next" onclick="next()" class="e8_btn_submit">下一步</button>
        </td>
    </tr>
</table>
<body style="height:100%;width:100%;">

<div style="width:20%;height:100%;float:left;background:#fcfcfc;">
    <jsp:include page="MigrationStep.jsp"></jsp:include>
</div>
<div style="width:80%;height:100%;float:right">
	<iframe src="ReportTable.jsp" class="migrationIframe"></iframe>

</div>
</body>
</html>