outputspeedhistory.jsp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
  2. <%@include file="/pages/includes/taglibs.jsp" %>
  3. <head>
  4. <script type="text/javascript" src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js"></script>
  5. <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/jquery.jqGrid.min.js"></script>
  6. <script type="text/ecmascript" src="<%=request.getContextPath() %>/resource/plugin/jqgrid/js/i18n/grid.locale-cn.js"></script>
  7. <script type="text/ecmascript" src="<%=request.getContextPath()%>/resource/js/system/jqdatagrid.js"></script>
  8. <script src="<%=request.getContextPath()%>/resource/js/datePicker/WdatePicker.js" type="text/javascript"></script>
  9. <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
  10. <link rel="stylesheet" type="text/css" media="screen" href="<%=request.getContextPath() %>/resource/plugin/jqgrid/css/ui.jqgrid.css" />
  11. <style type="text/css">
  12. a{ /* 统一设置所以样式 */
  13. font-family:Arial;
  14. font-size:12px;
  15. text-align:center;
  16. margin:3px;
  17. }
  18. a:link,a:visited{ /* 超链接正常状态、被访问过的样式 */
  19. color:#000000;
  20. padding:4px 10px 4px 10px;
  21. background-color:#f1f1f1;
  22. text-decoration:none;
  23. border-top:1px solid #EEEEEE; /* 边框实现阴影效果 */
  24. border-left:1px solid #EEEEEE;
  25. border-bottom:1px solid #717171;
  26. border-right:1px solid #717171;
  27. }
  28. a:hover{ /* 鼠标指针经过时的超链接 */
  29. color:#821818; /* 改变文字颜色 */
  30. padding:5px 8px 3px 12px; /* 改变文字位置 */
  31. background-color:#e2c4c9; /* 改变背景色 */
  32. border-top:1px solid #717171; /* 边框变换,实现“按下去”的效果 */
  33. border-left:1px solid #717171;
  34. border-bottom:1px solid #EEEEEE;
  35. border-right:1px solid #EEEEEE;
  36. }
  37. fieldset legend {
  38. color:#302A2A;
  39. font: bold 16px/2 Verdana, Geneva, sans-serif;
  40. font-weight: bold;
  41. text-align: left;
  42. text-shadow: 2px 2px 2px rgb(88, 126, 156);
  43. }
  44. </style>
  45. <script type="text/javascript">
  46. var wtid = '<s:property value="windturbineid"/>';
  47. function changeFc(fcId,wtid){
  48. var url1 = "../warn/changeFc.action?fcId="+fcId;
  49. $.ajax({
  50. type:"post",
  51. url:url1,
  52. dataType:"json",
  53. success: function(data){
  54. if(data.length != 0){
  55. eval(data);
  56. $("#windturbineid").empty();
  57. $("#windturbineid").append("<option value=''>请选择</option>");
  58. for(var i=0; i<data.length; i++){
  59. $("#windturbineid").append("<option value='"+data[i].id+"'>"+data[i].name+"</option>");
  60. }
  61. }else{
  62. $("#windturbineid").append("<option value=''>请选择</option>");
  63. $("#windturbineid").addOption("请选择","");
  64. }
  65. if(wtid!=null)
  66. {
  67. $("#windturbineid").val(wtid);
  68. wtid=null;
  69. }
  70. queryData();
  71. }
  72. });
  73. }
  74. function queryData(){
  75. if("" == $("#beginDate").val()){
  76. alert("请选择查询开始日期!");
  77. }else if("" == $("#endDate").val()){
  78. alert("请选择查询结束日期!");
  79. }
  80. else{
  81. $("#gridTable").jqGrid('GridUnload');
  82. showJqGrid();
  83. }
  84. }
  85. $(document).ready(function () {
  86. var windfarm = '<s:property value="windfarm"/>';
  87. $("#windturbineid").val('<s:property value="windturbineid"/>');
  88. changeFc(windfarm);
  89. //showJqGrid();
  90. });
  91. function showJqGrid() {
  92. var windfarm=$("#windfarm").find("option:selected").val();
  93. var windturbineid=$("#windturbineid").find("option:selected").val();
  94. var beginDate=$("#beginDate").val();
  95. var endDate=$("#endDate").val();
  96. var id = 'gridTable';
  97. var url = "<%=request.getContextPath() %>/total/outputspeedhistorylist.action?windfarm=" + windfarm
  98. + "&windturbineid=" + windturbineid+ "&beginDate=" + beginDate+ "&endDate=" + endDate;
  99. var datatype = 'json';
  100. var colNames = ['风机', '日期','总小风切入','总大风切入','总小风切出', '总大风切出', '日小风切入','日小风切出',
  101. '日大风切入','日大风切出', '月小风切入','月大风切入','月小风切出', '月大风切出',
  102. '年小风切入','年大风切入','年小风切出','年大风切出'
  103. ];
  104. var colModel = [
  105. { name: 'windturbineid', index: 'windturbineid', width: 80, align: 'center'},
  106. { name: 'recorddate', index: 'recorddate', width: 80, align: 'center',formatter:'date',formatoptions:{srcformat: 'Y-m-d H:i:s', newformat: 'Y-m-d'}},
  107. { name: 'inputsmall', index: 'inputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  108. { name: 'inputbig', index: 'inputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  109. { name: 'outputsmall', index: 'outputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  110. { name: 'outputbig', index: 'outputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  111. { name: 'dayinputsmall', index: 'dayinputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  112. { name: 'dayoutputsmall', index: 'dayoutputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  113. { name: 'dayinputbig', index: 'dayinputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  114. { name: 'dayoutputbig', index: 'dayoutputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  115. { name: 'monthinputsmall', index: 'monthinputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  116. { name: 'monthinputbig', index: 'monthinputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  117. { name: 'monthoutputsmall', index: 'monthoutputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  118. { name: 'monthoutputbig', index: 'monthoutputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  119. { name: 'yearinputsmall', index: 'yearinputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  120. { name: 'yearinputbig', index: 'yearinputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  121. { name: 'yearoutputsmall', index: 'yearoutputsmall', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'},
  122. { name: 'yearoutputbig', index: 'yearoutputbig', width: 80, align: 'center', formatter:'number', formatoptions:{decimalPlaces: 2},sorttype: 'int'}
  123. ];
  124. var caption = '切入切出风速整合历史';
  125. var sortname = 'windturbineid';
  126. var gridPagerID ='gridPager';
  127. var sortorder='desc';
  128. var height='auto';
  129. var width='auto';
  130. var rownumbers=true;
  131. var multiselect=false;
  132. myJqGrid(id, url, datatype, colNames, colModel, caption, sortname, gridPagerID,sortorder,height,width,
  133. multiselect,rownumbers);}
  134. function goBack() {
  135. $("#f1").attr("action", "../total/outputspeedindex.action").submit();
  136. }
  137. </script>
  138. <style type="text/css">
  139. fieldset legend {
  140. color:#302A2A;
  141. font: bold 16px/2 Verdana, Geneva, sans-serif;
  142. font-weight: bold;
  143. text-align: left;
  144. text-shadow: 2px 2px 2px rgb(88, 126, 156);
  145. }
  146. </style>
  147. </head>
  148. <body>
  149. <form action="/total/outputspeedhistoryindex.action" method="post" id="f1">
  150. <fieldset style="height: 60px" id="fst">
  151. <legend class="item_Name">查询条件</legend>
  152. <table width="1000px" cellpadding="0" cellspacing="0" class="dataform">
  153. <tr>
  154. <th width="100px" class="item_Name">
  155. 风场:
  156. </th>
  157. <td width="100px" class="item_Name">
  158. <s:select list="wps" cssStyle="width:100px" listKey="id" listValue="name" id="windfarm" name="windfarm" headerKey="" headerValue="请选择" onchange="javascript:queryData();"></s:select>
  159. </td>
  160. <th width="100px" class="item_Name">
  161. 风机:
  162. </th>
  163. <td width="100px" class="item_Name">
  164. <select
  165. name="windturbineid" id="windturbineid" onchange="javascript:queryData();">
  166. <option value="">请选择</option>
  167. </select>
  168. </td>
  169. <th width="100px" class="item_Name">
  170. 开始日期
  171. </th>
  172. <td width="100px" style="text-align: left">
  173. <s:textfield cssClass="Wdate" onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
  174. id="beginDate" name="beginDate" title="开始日期" onchange="javascript:queryData();"/>
  175. </td>
  176. <th width="100px" class="item_Name">
  177. 结束日期
  178. </th>
  179. <td width="100px" style="text-align: left">
  180. <s:textfield cssClass="Wdate" onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
  181. id="endDate" name="endDate" title="结束日期" onchange="javascript:queryData();"/>
  182. </td>
  183. <td width="200px" style="text-align: right">
  184. <input id="backbuttona" type="button" value="返回" onClick="goBack()" />
  185. </td>
  186. </tr>
  187. </table>
  188. </fieldset>
  189. <br/>
  190. <table id='gridTable' >
  191. </table>
  192. <div id='gridPager'></div>
  193. </form>
  194. </body>