xieshengjie 4 years ago
parent
commit
da6f806a3c

+ 1 - 0
WebRoot/WEB-INF/classes/.gitignore

@@ -1,3 +1,4 @@
 /applicationContext.xml
 /bean-config/
 /com/
+/javaxb/

+ 238 - 238
WebRoot/pages/alert/runningalert.jsp

@@ -1,238 +1,238 @@
-<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
-<%@include file="/pages/includes/taglibs.jsp" %>
-<head>
- <script type="text/javascript" src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js"></script>
- <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/jquery.jqGrid.min.js"></script>
- <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/i18n/grid.locale-cn.js"></script>
- 
-<script type="text/ecmascript" src="<%=request.getContextPath()%>/resource/js/system/jqdatagridpage.js"></script>
-<script src="<%=request.getContextPath()%>/resource/js/datePicker/WdatePicker.js" type="text/javascript"></script>
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
- <link rel="stylesheet" type="text/css" media="screen" href="<%=request.getContextPath() %>/resource/plugin/jqgrid/css/ui.jqgrid.css" />
-<style type="text/css">
-
-a{      /* 统一设置所以样式 */
-     font-family:Arial;
-     font-size:12px;
-     text-align:center;
-     margin:3px;
-}
-a:link,a:visited{  /* 超链接正常状态、被访问过的样式 */
-    color:#000000;
-    padding:4px 10px 4px 10px;
-    background-color:#f1f1f1;
-    text-decoration:none;
- 
-    border-top:1px solid #EEEEEE; /* 边框实现阴影效果 */
-    border-left:1px solid #EEEEEE;
-    border-bottom:1px solid #717171;
-    border-right:1px solid #717171;
-}
-a:hover{       /* 鼠标指针经过时的超链接 */
-    color:#821818;     /* 改变文字颜色 */
-    padding:5px 8px 3px 12px;  /* 改变文字位置 */
-    background-color:#e2c4c9;  /* 改变背景色 */
-    border-top:1px solid #717171; /* 边框变换,实现“按下去”的效果 */
-    border-left:1px solid #717171;
-    border-bottom:1px solid #EEEEEE;
-    border-right:1px solid #EEEEEE;
-}
-
-fieldset legend {  
-    color:#302A2A;  
-    font: bold 16px/2 Verdana, Geneva, sans-serif;  
-    font-weight: bold;  
-    text-align: left;  
-    text-shadow: 2px 2px 2px rgb(88, 126, 156);  
-}  
-</style>
-<script type="text/javascript">
-	
-		
-	function queryData(){
-		var wfId = $("#wfId").val();
-		var isconfirmed = $("#isconfirmed").val();
-		var category1 = $("#category1").val();
-		var category2 = $("#category2").val();
-		var beginDate = $("#beginDate").val();
-		var endDate = $("#endDate").val();
-		if("" == beginDate){
-			alert("请选择查询开始日期!");
-		}else if("" ==endDate){
-			alert("请选择查询结束日期!");
-		}else if(beginDate >endDate){
-			alert("结束日期不允许小于开始日期!");
-		}else{
-
-		
-		var temp="runningAlertList.action?beginDate="+beginDate
-										+"&endDate="+endDate
-										+"&wfId="+wfId
-										+"&isconfirmed="+isconfirmed
-										+"&category1="+category1
-										+"&category2="+category2;
-		var url= encodeURI(encodeURI(temp)); 
-			$("#gridTable").setGridParam({url:url}).trigger("reloadGrid"); 
-		}
-	}
-
-	function changeType(category1){
-		if(category1!='' && category1!=null ){
-			var url = "changeBJLXAjax.action?category1="+category1;
-			$.ajax({
-				type:"post",
-				url:url,
-				dataType:"json",
-				success: function(data){
-					if(data.length != 0){
-						eval(data);
-						$("#category2").empty();
-						$("#category2").append("<option value=''>请选择</option>"); 
-						for(var i=0; i<data.length; i++){
-							$("#category2").append("<option value='"+data[i].code+"'>"+data[i].name+"</option>"); 
-						}
-					}else{
-						$("#category2").empty();
-						$("#category2").append("<option value=''>请选择</option>"); 
-					}
-		  		}		
-			});
-		}
-	}
-	
-
-$(document).ready(function () {
-
-showJqGrid();
-
-});
-function showJqGrid() {
-		var wfId = $("#wfId").val();
-// 		var isconfirmed = '${isconfirmed}';
-		var category1 = '${category1}';
-		var category2 = '${category2}';
-		var beginDate = $("#beginDate").val();
-		var endDate = $("#endDate").val();
-		
-		var temp="runningAlertList.action?beginDate="+beginDate
-										+"&endDate="+endDate
-										+"&wfId="+wfId
-// 										+"&isconfirmed="+isconfirmed
-										+"&category1="+category1
-										+"&category2="+category2;
-var url= encodeURI(encodeURI(temp)); 
-var id = 'gridTable';
-
-
-var datatype = 'json';
-
-var colNames = ['场站名称', '工程名称','线路名称','风机名称','报警描述','报警时间'
-                ,'分类1','分类2','报警级别','是否报警','确认时间'];
-var colModel = [
-{ name: 'stationname', index: 'stationname', width: 120, align: 'center'},
-{ name: 'projectname', index: 'projectname', width: 80, align: 'center'},
-{ name: 'linename', index: 'linename', width: 80, align: 'center'},
-{ name: 'windturbinename', index: 'windturbinename', width: 100, align: 'center'},
-{ name: 'alerttext', index: 'alerttext', width: 240, align: 'center'},
-{ name: 'lastupdatetime', index: 'lastupdatetime', width: 120, align: 'center'},
-{ name: 'category1', index: 'category1', width: 80, align: 'center'},
-{ name: 'category2', index: 'category2', width: 80, align: 'center'},
-{ name: 'rank', index: 'rank', width: 60, align: 'center'},
-{ name: 'isopened', index: 'isopened', width: 60, align: 'center'},
-// { name: 'isconfirmed', index: 'isconfirmed', width: 60, align: 'center'},
-{ name: 'confirmtime', index: 'confirmtime', width: 120, align: 'center'}
-];
-
-var caption = '报警列表';
-
-var sortname = 'lastupdatetime';
-
-var gridPagerID ='gridPager';
-
-var sortorder='desc';
-
-var height='650';
-
-var width='1610';
-
-
-var rownumbers=true;
-
-var multiselect=false;
-
-myJqGrid(id, url, datatype, colNames, colModel, caption,  sortname, gridPagerID,sortorder,height,width,
-multiselect,rownumbers);
-}
-</script>
-<style type="text/css">
-
-
-fieldset legend {  
-    color:#302A2A;  
-    font: bold 16px/2 Verdana, Geneva, sans-serif;  
-    font-weight: bold;  
-    text-align: left;  
-    text-shadow: 2px 2px 2px rgb(88, 126, 156);  
-}  
-</style>
-</head>
-<body>
-
-<fieldset style="height: 80px;width: 1580px" id="fst">
-    <legend class="item_Name">查询条件</legend>
-  <table  class="dataform">
-	<tr>
-		<th width="100" class="item_Name">
-			场站:
-		</th>
-		<td width="120" >
-			<s:select list="wps" listKey="id" listValue="name" id="wfId" name="wfId" headerKey="" headerValue="请选择" onchange="queryData();" ></s:select>
-		</td>
-		<th width="100" class="item_Name">
-			报警类型:
-		</th>
-		<td width="120" >
-			<select name="category1" id="category1" style="width:100" onchange="javascript:changeType(this.value);">
-			    <option value="">请选择</option>
-			    <option value="windturbine">风机报警</option>
-			    <option value="SYZ">升压站报警</option>
-			    <option value="custom">自定义报警</option>
-			</select>
-		</td>
-		<th width="100" class="item_Name">
-			报警类别:
-		</th>
-		<td width="120" >
-			<select name="category2" id="category2" style="width:100" onchange="javascript:queryData();">
-				<option value="">请选择</option>
-			</select> 
-		</td>
-<!-- 		<th width="100" class="item_Name"> -->
-<!-- 			是否确认: -->
-<!-- 		</th> -->
-<!-- 		<td width="120" > -->
-<!-- 			<select name="isconfirmed" id="isconfirmed" style="width:100" onchange="javascript:queryData();"> -->
-<!-- 			    <option value="">请选择</option> -->
-<!-- 			    <option value="1">已确认</option> -->
-<!-- 			    <option value="0">未确认</option> -->
-<!-- 			</select> -->
-<!-- 		</td> -->
-		<td width="80" style="text-align: right">
-			<a href="#" onclick="javascript:queryData();"  id="toexcel">查询</a>	
-		</td>
-		<td></td>
-	</tr>
-</table>
-</fieldset>
-
-<br/>
-
-<table id='gridTable' height="100%">
-
-</table>
-
-<div id='gridPager'></div>
-
-
-</body>
-
+<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
+<%@include file="/pages/includes/taglibs.jsp" %>
+<head>
+ <script type="text/javascript" src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js"></script>
+ <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/jquery.jqGrid.min.js"></script>
+ <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/i18n/grid.locale-cn.js"></script>
+ 
+<script type="text/ecmascript" src="<%=request.getContextPath()%>/resource/js/system/jqdatagridpage.js"></script>
+<script src="<%=request.getContextPath()%>/resource/js/datePicker/WdatePicker.js" type="text/javascript"></script>
+ <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
+ <link rel="stylesheet" type="text/css" media="screen" href="<%=request.getContextPath() %>/resource/plugin/jqgrid/css/ui.jqgrid.css" />
+<style type="text/css">
+
+a{      /* 统一设置所以样式 */
+     font-family:Arial;
+     font-size:12px;
+     text-align:center;
+     margin:3px;
+}
+a:link,a:visited{  /* 超链接正常状态、被访问过的样式 */
+    color:#000000;
+    padding:4px 10px 4px 10px;
+    background-color:#f1f1f1;
+    text-decoration:none;
+ 
+    border-top:1px solid #EEEEEE; /* 边框实现阴影效果 */
+    border-left:1px solid #EEEEEE;
+    border-bottom:1px solid #717171;
+    border-right:1px solid #717171;
+}
+a:hover{       /* 鼠标指针经过时的超链接 */
+    color:#821818;     /* 改变文字颜色 */
+    padding:5px 8px 3px 12px;  /* 改变文字位置 */
+    background-color:#e2c4c9;  /* 改变背景色 */
+    border-top:1px solid #717171; /* 边框变换,实现“按下去”的效果 */
+    border-left:1px solid #717171;
+    border-bottom:1px solid #EEEEEE;
+    border-right:1px solid #EEEEEE;
+}
+
+fieldset legend {  
+    color:#302A2A;  
+    font: bold 16px/2 Verdana, Geneva, sans-serif;  
+    font-weight: bold;  
+    text-align: left;  
+    text-shadow: 2px 2px 2px rgb(88, 126, 156);  
+}  
+</style>
+<script type="text/javascript">
+	
+		
+	function queryData(){
+		var wfId = $("#wfId").val();
+		var isconfirmed = $("#isconfirmed").val();
+		var category1 = $("#category1").val();
+		var category2 = $("#category2").val();
+		var beginDate = $("#beginDate").val();
+		var endDate = $("#endDate").val();
+		if("" == beginDate){
+			alert("请选择查询开始日期!");
+		}else if("" ==endDate){
+			alert("请选择查询结束日期!");
+		}else if(beginDate >endDate){
+			alert("结束日期不允许小于开始日期!");
+		}else{
+
+		
+		var temp="runningAlertList.action?beginDate="+beginDate
+										+"&endDate="+endDate
+										+"&wfId="+wfId
+										+"&isconfirmed="+isconfirmed
+										+"&category1="+category1
+										+"&category2="+category2;
+		var url= encodeURI(encodeURI(temp)); 
+			$("#gridTable").setGridParam({url:url}).trigger("reloadGrid"); 
+		}
+	}
+
+	function changeType(category1){
+		if(category1!='' && category1!=null ){
+			var url = "changeBJLXAjax.action?category1="+category1;
+			$.ajax({
+				type:"post",
+				url:url,
+				dataType:"json",
+				success: function(data){
+					if(data.length != 0){
+						eval(data);
+						$("#category2").empty();
+						$("#category2").append("<option value=''>请选择</option>"); 
+						for(var i=0; i<data.length; i++){
+							$("#category2").append("<option value='"+data[i].code+"'>"+data[i].name+"</option>"); 
+						}
+					}else{
+						$("#category2").empty();
+						$("#category2").append("<option value=''>请选择</option>"); 
+					}
+		  		}		
+			});
+		}
+	}
+	
+
+$(document).ready(function () {
+
+showJqGrid();
+
+});
+function showJqGrid() {
+		var wfId = $("#wfId").val();
+// 		var isconfirmed = '${isconfirmed}';
+		var category1 = '${category1}';
+		var category2 = '${category2}';
+		var beginDate = $("#beginDate").val();
+		var endDate = $("#endDate").val();
+		
+		var temp="runningAlertList.action?beginDate="+beginDate
+										+"&endDate="+endDate
+										+"&wfId="+wfId
+// 										+"&isconfirmed="+isconfirmed
+										+"&category1="+category1
+										+"&category2="+category2;
+var url= encodeURI(encodeURI(temp)); 
+var id = 'gridTable';
+
+
+var datatype = 'json';
+
+var colNames = ['场站名称', '工程名称','线路名称','风机名称','报警描述','报警时间'
+                ,'分类1','分类2','报警级别','是否报警','确认时间'];
+var colModel = [
+{ name: 'stationname', index: 'stationname', width: 120, align: 'center'},
+{ name: 'projectname', index: 'projectname', width: 80, align: 'center'},
+{ name: 'linename', index: 'linename', width: 80, align: 'center'},
+{ name: 'windturbinename', index: 'windturbinename', width: 100, align: 'center'},
+{ name: 'alerttext', index: 'alerttext', width: 240, align: 'center'},
+{ name: 'lastupdatetime', index: 'lastupdatetime', width: 120, align: 'center'},
+{ name: 'category1', index: 'category1', width: 80, align: 'center'},
+{ name: 'category2', index: 'category2', width: 80, align: 'center'},
+{ name: 'rank', index: 'rank', width: 60, align: 'center'},
+{ name: 'isopened', index: 'isopened', width: 60, align: 'center'},
+// { name: 'isconfirmed', index: 'isconfirmed', width: 60, align: 'center'},
+{ name: 'confirmtime', index: 'confirmtime', width: 120, align: 'center'}
+];
+
+var caption = '报警列表';
+
+var sortname = 'lastupdatetime';
+
+var gridPagerID ='gridPager';
+
+var sortorder='desc';
+
+var height='650';
+
+var width='1610';
+
+
+var rownumbers=true;
+
+var multiselect=false;
+
+myJqGrid(id, url, datatype, colNames, colModel, caption,  sortname, gridPagerID,sortorder,height,width,
+multiselect,rownumbers);
+}
+</script>
+<style type="text/css">
+
+
+fieldset legend {  
+    color:#302A2A;  
+    font: bold 16px/2 Verdana, Geneva, sans-serif;  
+    font-weight: bold;  
+    text-align: left;  
+    text-shadow: 2px 2px 2px rgb(88, 126, 156);  
+}  
+</style>
+</head>
+<body>
+
+<fieldset style="height: 80px;width: 1580px" id="fst">
+    <legend class="item_Name">查询条件</legend>
+  <table  class="dataform">
+	<tr>
+		<th width="100" class="item_Name">
+			场站:
+		</th>
+		<td width="120" >
+			<s:select list="wps" listKey="id" listValue="name" id="wfId" name="wfId" headerKey="" headerValue="请选择" onchange="queryData();" ></s:select>
+		</td>
+		<th width="100" class="item_Name">
+			报警类型:
+		</th>
+		<td width="120" >
+			<select name="category1" id="category1" style="width:100" onchange="javascript:changeType(this.value);">
+			    <option value="">请选择</option>
+			    <option value="windturbine">风机报警</option>
+			    <option value="SYZ">升压站报警</option>
+			    <option value="custom">自定义报警</option>
+			</select>
+		</td>
+		<th width="100" class="item_Name">
+			报警类别:
+		</th>
+		<td width="120" >
+			<select name="category2" id="category2" style="width:100" onchange="javascript:queryData();">
+				<option value="">请选择</option>
+			</select> 
+		</td>
+<!-- 		<th width="100" class="item_Name"> -->
+<!-- 			是否确认: -->
+<!-- 		</th> -->
+<!-- 		<td width="120" > -->
+<!-- 			<select name="isconfirmed" id="isconfirmed" style="width:100" onchange="javascript:queryData();"> -->
+<!-- 			    <option value="">请选择</option> -->
+<!-- 			    <option value="1">已确认</option> -->
+<!-- 			    <option value="0">未确认</option> -->
+<!-- 			</select> -->
+<!-- 		</td> -->
+		<td width="80" style="text-align: right">
+			<a href="#" onclick="javascript:queryData();"  id="toexcel">查询</a>	
+		</td>
+		<td></td>
+	</tr>
+</table>
+</fieldset>
+
+<br/>
+
+<table id='gridTable' height="100%">
+
+</table>
+
+<div id='gridPager'></div>
+
+
+</body>
+

+ 11 - 11
WebRoot/pages/apdata/apdatalayout.jsp

@@ -177,7 +177,7 @@ $(document).ready( function() {
 	});
 		
 	
-	goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$CNULUAU01KMJ8S4NTZ76CIEKMJNSTU9X.rpttpl&escape=true&forceedit=true&id=admin&pw=admin&showmenu=false&showparams=true');
+	goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$CNULUAU01KMJ8S4NTZ76CIEKMJNSTU9X.rpttpl&escape=true&forceedit=true&id=admin&pw=admin&showmenu=false&showparams=true');
 
 		
 	});
@@ -226,7 +226,7 @@ body {
 			<h3 style="text-align:left;background-image:url(<%=request.getContextPath()%>/resource/images/link/zbph_Link_Top.jpg) " >单机性能分析</h3>
 			<div  >
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$CNULUAU01KMJ8S4NTZ76CIEKMJNSTU9X.rpttpl&escape=true&forceedit=true&id=admin&pw=admin&showmenu=false&showparams=true')">单机性能分析</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$CNULUAU01KMJ8S4NTZ76CIEKMJNSTU9X.rpttpl&escape=true&forceedit=true&id=admin&pw=admin&showmenu=false&showparams=true')">单机性能分析</a></h4>
 		
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"  onclick="goUrl('/wtgoodness/goodnessindex.action')">单机信息总览</a></h4>
 			
@@ -260,35 +260,35 @@ body {
 			  <h3 style="text-align:left;background-image:url(<%=request.getContextPath()%>/resource/images/link/zbph_Link_Top.jpg) " >指标统计分析</h3>
 			<div  >
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$3EY6KU0ITV08EKNE5PWW4NCUO8EONA7J.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$3EY6KU0ITV08EKNE5PWW4NCUO8EONA7J.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">
 			复&nbsp;位&nbsp;及&nbsp;时&nbsp;率</a>
 			</h4>
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl(' 	http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$9QXFJTM2ON8674JQYUN8K1TMV6Q7US8S.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">
+			 onclick="goUrl(' 	http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$9QXFJTM2ON8674JQYUN8K1TMV6Q7US8S.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">
 			状&nbsp;态&nbsp;转&nbsp;换&nbsp;率</a>
 			</h4>
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$2DNBUR2UCA9CIC5DSIQBZ6FJU4DJNKNE$1$UUOVUIT2F6CYZLZULWM8T7ZYY7U49I8S.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$2DNBUR2UCA9CIC5DSIQBZ6FJU4DJNKNE$1$UUOVUIT2F6CYZLZULWM8T7ZYY7U49I8S.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">
 			消&nbsp;缺&nbsp;及&nbsp;时&nbsp;率</a>
 			</h4>
 			<!-- 
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$TL0BV4O9EMMZ7UYL4KDUOW5CNZLUKC7N.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">可&nbsp;靠&nbsp;性&nbsp;分&nbsp;析</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$TL0BV4O9EMMZ7UYL4KDUOW5CNZLUKC7N.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">可&nbsp;靠&nbsp;性&nbsp;分&nbsp;析</a></h4>
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$YQN86M7BUYIBMIVQE4LB8127CBQTCSZS.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">发&nbsp;电&nbsp;量&nbsp;分&nbsp;析</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$9UUFC0MUONU6M4JUCUNZY7WWY6U7CO60$1$YQN86M7BUYIBMIVQE4LB8127CBQTCSZS.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">发&nbsp;电&nbsp;量&nbsp;分&nbsp;析</a></h4>
 		
 			<!-- 
 			 	<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text" onclick="goUrl('/apdata/planIndex.action')">计&nbsp;划&nbsp;发&nbsp;电&nbsp;量</a></h4>
 			
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$9NLJCYPU55I6FSFNUWUNLDDJ92NYLS2U.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">减&nbsp;&nbsp;排&nbsp;&nbsp;K&nbsp;&nbsp;P&nbsp;&nbsp;I</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$9NLJCYPU55I6FSFNUWUNLDDJ92NYLS2U.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">减&nbsp;&nbsp;排&nbsp;&nbsp;K&nbsp;&nbsp;P&nbsp;&nbsp;I</a></h4>
 			--><!--
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$I2UXM83KNNCT7VO2VULTTN17NS2U2KSY.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">场用电率分析</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$I2UXM83KNNCT7VO2VULTTN17NS2U2KSY.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">场用电率分析</a></h4>
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$LUB0U3UUMMMSLFQUM3X9OCNMKYUNMKKT.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">利用小时分析</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$LUB0U3UUMMMSLFQUM3X9OCNMKYUNMKKT.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">利用小时分析</a></h4>
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"
-			 onclick="goUrl('http://192.168.2.216:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$ZMIDNETLCCSUUUUMAFA7Z3ANKWMSNFSU.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">风能资源分析</a></h4>
+			 onclick="goUrl('http://10.83.68.97:8010/bi/showreport.do?resid=EBI$12$VZCQU9AYVZPOYRQZLRNI9SUUMUZTM6LU$1$ZMIDNETLCCSUUUUMAFA7Z3ANKWMSNFSU.rpttpl&id=admin&pw=admin&showmenu=false&showparams=true&calcnow=true')">风能资源分析</a></h4>
 			-->
 			<!--
 			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a href="#"  class="Navigation_Text"

+ 248 - 248
WebRoot/pages/warn/warnlayoutJsp.jsp

@@ -1,249 +1,249 @@
-<%@ page language="java" contentType="text/html;charset=utf-8"%>
-<%@include file="/pages/includes/taglibs.jsp"%>
-<!DOCTYPE html>
-<html>
-<head>
-<title></title>
-
-<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css">
-<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/css/button.css">
-<!-- CUSTOMIZE/OVERRIDE THE DEFAULT CSS -->
-<style type="text/css">
-
-  
-/*  
-三种必备样式为:  
-paneClass:    "ui-layout-pane" 窗格样式  
-resizerClass: "ui-layout-resizer" 拉动条样式  
-togglerClass: "ui-layout-toggler" 拉动条上按钮样式  
-*/  
-  
-/*  
- 所有窗格应用的样式,也是必备样式  
-ui-layout-pane   
-ui-layout-pane-[PANE-NAME](东南西北中,如:ui-layout-pane-west。这个样式放入基本样式下方,可覆盖原样式。 )   
-ui-layout-pane-[PANE-STATE] (open、closed 如:ui-layout-pane-open。窗格打开时的样式)  
-ui-layout-pane-[PANE-NAME]-[PANE-STATE] (如:ui-layout-pane-west-closed。指定东南西北中一个窗格在某状态下的样式。)  
-*/  
-.ui-layout-pane {   
-    background: #ffffff;  
-    border:     0px solid #ffffff;  
-    padding:    1px;   
-    overflow:   hidden;  
-
-}  
-    /*非必备样式,描述窗格中的内容*/  
-    .ui-layout-content {  
-        padding:    0px;  
-        position:   relative;   
-        overflow:   hidden; 
-        margin: 0px;
-        width: 100%;
-    }  
-  
-/*  
- *  所有拉动条的样式  
- */  
-.ui-layout-resizer  {   
-    background:     #dfe8f6;  
-    border:         0.5px solid #BBB;  
-    border-width:   0;  
-    }  
-    /*  
-     * 拉动条拉动时,保持不动的拉动条样式,不明白修改背景测试。  
-     */  
-    .ui-layout-resizer-drag {  
-    }  
-      
-    /*鼠标移动到拉动条时的样式*/  
-    .ui-layout-resizer-hover{  
-    }  
-    /*   
-     *拖动拉动条时,拉动条的样式,据说是设置“打开悬停”和“拖动”为同一样式。  
-     */  
-    /*.ui-layout-resizer-open-hover ,   */  
-    .ui-layout-resizer-dragging {     
-        background:#aaaaaa;  
-    }  
-  
-    /*拖动拉动条时,到最大或最小边缘时的样式*/  
-    .ui-layout-resizer-dragging-limit {  
-        background: #E1A4A4; /* red */  
-    }  
-  
-    /*拉动条关闭时,的样式。*/  
-    .ui-layout-resizer-closed-hover {   
-        background: #FFCC00;  
-    }  
-      
-    /*窗格关闭后,点击拉动条(非拉动条按钮),窗格滑动时拉动条的样式*/  
-    .ui-layout-resizer-sliding {      
-        opacity: .10;   
-        filter:  alpha(opacity=10);  
-        }  
-        /*窗格关闭后,点击拉动条(非拉动条按钮),窗格滑动时,鼠标悬停在拉动条上的样式*/  
-        .ui-layout-resizer-sliding-hover {  
-            opacity: 1.00;   
-            filter:  alpha(opacity=100);  
-        }  
-  
-  
-  
-      
-  
-/*  
- *  拖动杆上的按钮  
- */  
-.ui-layout-toggler {  
-    border: 1px solid #CCCCCC;   
-    background-color: #bcd2ef;  
-    opacity: .60;  
-    filter:  alpha(opacity=60);  
-    }  
-      
-/*  
-    鼠标悬停在拉动条时的样式,已被.ui-layout-resizer-open-hover和.ui-layout-resizer-closed-hover覆盖了。  
-    .ui-layout-resizer-hover  
- */  
-      
-      
-    /*鼠标悬停在拖动条上按钮的样式*/  
-    .ui-layout-toggler-hover {  
-        background-color: #0099FF;  
-        opacity: 1.00;  
-        filter:  alpha(opacity=100);  
-    }  
-      
-    /*窗格关闭后,半打开状态的拉动条是隐藏的*/  
-    .ui-layout-resizer-sliding  ui-layout-toggler {  
-        display: none;  
-    }  
-  	.ui-widget { /* Footer in East-pane */
-	font-size:		14px;
-	font-family: "Times New Roman", Times, serif;
-	font-weight:    bold;
-	border-width:	0px 0 0;
-	}
-
-h3 { /* Headers & Footer in Center & East panes */
-
-	height:14px;
-	background:		#fff;
-	border:			0px solid #BBB;
-	border-width:	0 0 0px;
-	margin:			0;
-}
-h4 { /* Footer in East-pane */
-	font-size: 12px;
-	font-weight: bolder;
-	color: #333;
-	border-width:	0px 0 0;
-	margin: 5px;
-}
-.ui-accordion .ui-accordion-content 
-{
- padding: 0;
- border-top: 0; 
- overflow: auto; 
- zoom: 1; 
- }
-.ui-helper-reset
-{
-font-size: 12px;
-}
-</style>
-
-<script type="text/javascript" src="<%=request.getContextPath()%>/resource/plugin/jqueryui/js/jquery-1.8.3.js"></script>
-<script type="text/javascript" src="<%=request.getContextPath()%>/resource/plugin/jqueryui/js/jquery-ui-1.9.2.custom.js"></script>
-<script type="text/javascript" src="<%=request.getContextPath()%>/resource/js/layout/jquery.layout.js"></script>
-<script type="text/javascript" src="<%=request.getContextPath()%>/resource/js/layout/jquery.layout.resizePaneAccordions.js"></script>
-
-<script type="text/javascript" src="<%=request.getContextPath()%>/resource/js/layout/themeswitchertool.js"></script> 
-
-<script type="text/javascript">
-$(document).ready( function() {
-
-	myLayout = $('body').layout({
-		west__size:			220
-	
-		// RESIZE Accordion widget when panes resize
-	,	west__onresize:		$.layout.callbacks.resizePaneAccordions
-	});
-
-	// ACCORDION - in the West pane
-	$("#accordion1").accordion({
-		heightStyle:	"fill"
-	});
-		
-		// ACCORDION - in the West pane
-		$("#accordion1").accordion({
-			heightStyle:	"fill"
-		});
-		
-	
-
-goUrl("/warnhistory/warnhistoryIndex.action");
-		
-	});
-	function goUrl(url)
-	{
-		$("#frame").attr("src",url);
-	}
-	</script>
-<style type="text/css">
-body {
-	margin-left: 0px;
-	margin-top: 0px;
-	margin-right: 0px;
-	margin-bottom: 0px;
-}
-.Navigation_Text {
-	font-family: "Times New Roman", Times, serif;
-	font-size: 12px;
-	font-weight:normal;
-	color: #333;
-	text-decoration: none;
-	position:relative; 
-	top: 6px;
-	left:30px;
-}
-</style>
-</head>
-<body>
-
-
-<div class="ui-layout-center" style="display: none;"> 
-	<div class="ui-layout-content ui-widget-content">
-	 <iframe id="frame" width="99%" height="100%" frameborder="0" scrolling="auto"  style="margin-left:5px" src=""></iframe>
-	</div>
-</div>
-
-
-<div class=ui-layout-west >
-
-
-	<div class="ui-layout-content">
-		<div id="accordion1" class="basic">
-		<h3 style="text-align:left;background-image:url(<%=request.getContextPath()%>/resource/images/link/zbph_Link_Top.jpg) " >报警中心</h3>
-			<div  style="overflow:hidden"  >
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/alerthistroy/alarmwindowIndex.action')">光&nbsp;字牌报&nbsp;警</a></h4>
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/alerthistroy/runningAlarmIndex.action')">实&nbsp;&nbsp;时&nbsp;&nbsp;报&nbsp;&nbsp;警</a></h4>
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/alerthistroy/temperatureHz.action')">主&nbsp;&nbsp;要&nbsp;&nbsp;指&nbsp;&nbsp;标</a></h4>
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/monitor/temperatureIndex.action')">温&nbsp;&nbsp;度&nbsp;&nbsp;监&nbsp;&nbsp;控</a></h4>			
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/alerthistroy/alerthistroyIndex.action')">历&nbsp;&nbsp;史&nbsp;&nbsp;报&nbsp;&nbsp;警</a></h4>
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/warnhistory/warnhistoryIndex.action')">SCADA报警</a></h4>
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/electricalwarn/electricalwarnIndex.action')">升&nbsp;压站报&nbsp;警</a></h4>
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/event/index.action')">停&nbsp;&nbsp;机&nbsp;&nbsp;事&nbsp;&nbsp;件</a></h4>			 						 
-			<!--  <h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/customwarn/index.action')">自&nbsp;定义报&nbsp;警</a></h4>-->
-			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/brownouts/index.action')">限&nbsp;&nbsp;电&nbsp;&nbsp;管&nbsp;&nbsp;理</a></h4>
-			
-			</div>
-			
-	
-		</div>
-	</div>
-
-</div>
-
-</body>
+<%@ page language="java" contentType="text/html;charset=utf-8"%>
+<%@include file="/pages/includes/taglibs.jsp"%>
+<!DOCTYPE html>
+<html>
+<head>
+<title></title>
+
+<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css">
+<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/css/button.css">
+<!-- CUSTOMIZE/OVERRIDE THE DEFAULT CSS -->
+<style type="text/css">
+
+  
+/*  
+三种必备样式为:  
+paneClass:    "ui-layout-pane" 窗格样式  
+resizerClass: "ui-layout-resizer" 拉动条样式  
+togglerClass: "ui-layout-toggler" 拉动条上按钮样式  
+*/  
+  
+/*  
+ 所有窗格应用的样式,也是必备样式  
+ui-layout-pane   
+ui-layout-pane-[PANE-NAME](东南西北中,如:ui-layout-pane-west。这个样式放入基本样式下方,可覆盖原样式。 )   
+ui-layout-pane-[PANE-STATE] (open、closed 如:ui-layout-pane-open。窗格打开时的样式)  
+ui-layout-pane-[PANE-NAME]-[PANE-STATE] (如:ui-layout-pane-west-closed。指定东南西北中一个窗格在某状态下的样式。)  
+*/  
+.ui-layout-pane {   
+    background: #ffffff;  
+    border:     0px solid #ffffff;  
+    padding:    1px;   
+    overflow:   hidden;  
+
+}  
+    /*非必备样式,描述窗格中的内容*/  
+    .ui-layout-content {  
+        padding:    0px;  
+        position:   relative;   
+        overflow:   hidden; 
+        margin: 0px;
+        width: 100%;
+    }  
+  
+/*  
+ *  所有拉动条的样式  
+ */  
+.ui-layout-resizer  {   
+    background:     #dfe8f6;  
+    border:         0.5px solid #BBB;  
+    border-width:   0;  
+    }  
+    /*  
+     * 拉动条拉动时,保持不动的拉动条样式,不明白修改背景测试。  
+     */  
+    .ui-layout-resizer-drag {  
+    }  
+      
+    /*鼠标移动到拉动条时的样式*/  
+    .ui-layout-resizer-hover{  
+    }  
+    /*   
+     *拖动拉动条时,拉动条的样式,据说是设置“打开悬停”和“拖动”为同一样式。  
+     */  
+    /*.ui-layout-resizer-open-hover ,   */  
+    .ui-layout-resizer-dragging {     
+        background:#aaaaaa;  
+    }  
+  
+    /*拖动拉动条时,到最大或最小边缘时的样式*/  
+    .ui-layout-resizer-dragging-limit {  
+        background: #E1A4A4; /* red */  
+    }  
+  
+    /*拉动条关闭时,的样式。*/  
+    .ui-layout-resizer-closed-hover {   
+        background: #FFCC00;  
+    }  
+      
+    /*窗格关闭后,点击拉动条(非拉动条按钮),窗格滑动时拉动条的样式*/  
+    .ui-layout-resizer-sliding {      
+        opacity: .10;   
+        filter:  alpha(opacity=10);  
+        }  
+        /*窗格关闭后,点击拉动条(非拉动条按钮),窗格滑动时,鼠标悬停在拉动条上的样式*/  
+        .ui-layout-resizer-sliding-hover {  
+            opacity: 1.00;   
+            filter:  alpha(opacity=100);  
+        }  
+  
+  
+  
+      
+  
+/*  
+ *  拖动杆上的按钮  
+ */  
+.ui-layout-toggler {  
+    border: 1px solid #CCCCCC;   
+    background-color: #bcd2ef;  
+    opacity: .60;  
+    filter:  alpha(opacity=60);  
+    }  
+      
+/*  
+    鼠标悬停在拉动条时的样式,已被.ui-layout-resizer-open-hover和.ui-layout-resizer-closed-hover覆盖了。  
+    .ui-layout-resizer-hover  
+ */  
+      
+      
+    /*鼠标悬停在拖动条上按钮的样式*/  
+    .ui-layout-toggler-hover {  
+        background-color: #0099FF;  
+        opacity: 1.00;  
+        filter:  alpha(opacity=100);  
+    }  
+      
+    /*窗格关闭后,半打开状态的拉动条是隐藏的*/  
+    .ui-layout-resizer-sliding  ui-layout-toggler {  
+        display: none;  
+    }  
+  	.ui-widget { /* Footer in East-pane */
+	font-size:		14px;
+	font-family: "Times New Roman", Times, serif;
+	font-weight:    bold;
+	border-width:	0px 0 0;
+	}
+
+h3 { /* Headers & Footer in Center & East panes */
+
+	height:14px;
+	background:		#fff;
+	border:			0px solid #BBB;
+	border-width:	0 0 0px;
+	margin:			0;
+}
+h4 { /* Footer in East-pane */
+	font-size: 12px;
+	font-weight: bolder;
+	color: #333;
+	border-width:	0px 0 0;
+	margin: 5px;
+}
+.ui-accordion .ui-accordion-content 
+{
+ padding: 0;
+ border-top: 0; 
+ overflow: auto; 
+ zoom: 1; 
+ }
+.ui-helper-reset
+{
+font-size: 12px;
+}
+</style>
+
+<script type="text/javascript" src="<%=request.getContextPath()%>/resource/plugin/jqueryui/js/jquery-1.8.3.js"></script>
+<script type="text/javascript" src="<%=request.getContextPath()%>/resource/plugin/jqueryui/js/jquery-ui-1.9.2.custom.js"></script>
+<script type="text/javascript" src="<%=request.getContextPath()%>/resource/js/layout/jquery.layout.js"></script>
+<script type="text/javascript" src="<%=request.getContextPath()%>/resource/js/layout/jquery.layout.resizePaneAccordions.js"></script>
+
+<script type="text/javascript" src="<%=request.getContextPath()%>/resource/js/layout/themeswitchertool.js"></script> 
+
+<script type="text/javascript">
+$(document).ready( function() {
+
+	myLayout = $('body').layout({
+		west__size:			220
+	
+		// RESIZE Accordion widget when panes resize
+	,	west__onresize:		$.layout.callbacks.resizePaneAccordions
+	});
+
+	// ACCORDION - in the West pane
+	$("#accordion1").accordion({
+		heightStyle:	"fill"
+	});
+		
+		// ACCORDION - in the West pane
+		$("#accordion1").accordion({
+			heightStyle:	"fill"
+		});
+		
+	
+
+goUrl("/warnhistory/warnhistoryIndex.action");
+		
+	});
+	function goUrl(url)
+	{
+		$("#frame").attr("src",url);
+	}
+	</script>
+<style type="text/css">
+body {
+	margin-left: 0px;
+	margin-top: 0px;
+	margin-right: 0px;
+	margin-bottom: 0px;
+}
+.Navigation_Text {
+	font-family: "Times New Roman", Times, serif;
+	font-size: 12px;
+	font-weight:normal;
+	color: #333;
+	text-decoration: none;
+	position:relative; 
+	top: 6px;
+	left:30px;
+}
+</style>
+</head>
+<body>
+
+
+<div class="ui-layout-center" style="display: none;"> 
+	<div class="ui-layout-content ui-widget-content">
+	 <iframe id="frame" width="99%" height="100%" frameborder="0" scrolling="auto"  style="margin-left:5px" src=""></iframe>
+	</div>
+</div>
+
+
+<div class=ui-layout-west >
+
+
+	<div class="ui-layout-content">
+		<div id="accordion1" class="basic">
+		<h3 style="text-align:left;background-image:url(<%=request.getContextPath()%>/resource/images/link/zbph_Link_Top.jpg) " >报警中心</h3>
+			<div  style="overflow:hidden"  >
+			<!--<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/alerthistroy/alarmwindowIndex.action')">光&nbsp;字牌报&nbsp;警</a></h4>-->
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/alerthistroy/runningAlarmIndex.action')">实&nbsp;&nbsp;时&nbsp;&nbsp;报&nbsp;&nbsp;警</a></h4>
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/alerthistroy/temperatureHz.action')">主&nbsp;&nbsp;要&nbsp;&nbsp;指&nbsp;&nbsp;标</a></h4>
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/monitor/temperatureIndex.action')">温&nbsp;&nbsp;度&nbsp;&nbsp;监&nbsp;&nbsp;控</a></h4>			
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/alerthistroy/alerthistroyIndex.action')">历&nbsp;&nbsp;史&nbsp;&nbsp;报&nbsp;&nbsp;警</a></h4>
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text" href="#" onclick="goUrl('/warnhistory/warnhistoryIndex.action')">SCADA报警</a></h4>
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/electricalwarn/electricalwarnIndex.action')">升&nbsp;压站报&nbsp;警</a></h4>
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/event/index.action')">停&nbsp;&nbsp;机&nbsp;&nbsp;事&nbsp;&nbsp;件</a></h4>			 						 
+			<!--  <h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/customwarn/index.action')">自&nbsp;定义报&nbsp;警</a></h4>-->
+			<h4 style="height:28px;text-align:left;vertical-align: middle;background-image: url('<%=request.getContextPath()%>/resource/images/system/pictures/item_Bg.fw.png')" ><a class="Navigation_Text"  href="#" onclick="goUrl('/brownouts/index.action')">限&nbsp;&nbsp;电&nbsp;&nbsp;管&nbsp;&nbsp;理</a></h4>
+			
+			</div>
+			
+	
+		</div>
+	</div>
+
+</div>
+
+</body>
 </html>