c3f428016e4ed8f63931383d1d16c812ce8fe668.svn-base 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>变电站停运大于电压明细</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <script type="text/javascript" src="/nwyj/scripts/cockpit/cockpitIndex/context.js"></script>
  8. <!--框架必需start-->
  9. <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/jquery.js"></script>
  10. <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/language/cn.js"></script>
  11. <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/main.js"></script>
  12. <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/framework.js"></script>
  13. <link href="/nwyj/scripts/qui/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
  14. <link rel="stylesheet" type="text/css" id="skin" prePath="/nwyj/scripts/qui/" scrollerY="false"/>
  15. <link rel="stylesheet" type="text/css" id="customSkin"/>
  16. <!--框架必需end-->
  17. <!--grid组件start-->
  18. <script src="/nwyj/scripts/qui/libs/js/table/quiGrid.js" type="text/javascript"></script>
  19. <!--grid组件end-->
  20. <script type="text/javascript" src="/nwyj/scripts/cockpit/cockpitIndex/util.js"></script>
  21. <!-- <link rel="stylesheet" type="text/css" href="/nwyj/page/cockpit/webgis/js/gisgrid.css"> -->
  22. <link rel="stylesheet" type="text/css" href="/nwyj/page/cockpit/cockpit_layout/icon.css">
  23. <!-- <style type="text/css">
  24. .c_page_hed{background-color:#08094C }
  25. </style> -->
  26. <link rel="stylesheet" type="text/css" href="/nwyj/page/cockpit/webgis/js/jsc_grid.css">
  27. </head>
  28. <body>
  29. <div id="i_page_hed" class="c_page_hed">
  30. </div><div id="i_page_colse" class=" c_page_close index_icon_close_content"></div>
  31. <div id="i_page_grid_content" class="c_page_grid_content">
  32. <div id="i_page_grid" class="c_page_grid"></div>
  33. </div>
  34. <script type="text/javascript">
  35. var utils=new Util();
  36. var grid=null;
  37. var params=utils.resolveUrl();
  38. var columns=[{ display:"变电站名称", name: "DEPT_NAME", align: "center", width: "25%"},
  39. { display:"停运数", name: "PRESSURE_LOSS_"+params.tempLevel,align: "center", width: "25%"},
  40. { display:"未恢复数", name: "NO_RECOVER_"+params.tempLevel,align: "center", width: "25%"},
  41. { display:"上报时间", name: "APPEAR_TIME",align: "center", width: "25%"}
  42. ];
  43. var options={
  44. columns:columns,
  45. url:"/nwyj/ws/ChartServiceImpl/ChartServiceImpl/getChildDataOrSelfByWarnningNumber",
  46. params: [
  47. {name:"name",value:"getChildsRecodeSumData"},
  48. {name:"charType",value:"biandianzhantingyun"},
  49. {name:"compId",value:params.compId},
  50. {name:"number",value:params.number},
  51. {name:"viewName",value:"SUBSTATION_STOPPAGE_RECOVERY_VIEW"}
  52. ] ,
  53. pageSize:10,
  54. usePager:false,
  55. percentWidthMode:true,
  56. height:"100%",
  57. method: "post",
  58. width:"100%",
  59. usePager : false,
  60. isScroll: true,
  61. percentWidthMode : false,
  62. alternatingRow: false,
  63. rowAttrRender: function(rowdata, rowindex, rowid){
  64. return rowdata["__index"] % 2 == 0 ? "style='background-color:rgb(44,51,79);'" : "style='background-color:rgb(34,40,62);'" ;
  65. }
  66. };
  67. $(function(){
  68. grid=$("#i_page_grid").quiGrid(options);
  69. setTitle();
  70. close();
  71. });
  72. function setTitle(){
  73. $("#i_page_hed").text(params.text+params.level+"变电站停运详情表");
  74. }
  75. </script>
  76. </body>
  77. </html>