763332833ea176b81218f11fd51adba0a16654bd.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>线路跳闸小于110kV电压明细</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=[
  39. { display:"单位名称", name: "DEPT_NAME", align: "center", width: "20%"},
  40. { display:"单位编码", name: "COMP_ID", align: "center", width: "16%"},
  41. { display:"线路名称", name: "XLTZMX_XLMC",align: "center", width: "16%"},
  42. { display:"初次跳闸时间", name: "XLTZMX_CCTZSJ",align: "center", width: "16%"},
  43. { display:"最终恢复时间", name: "XLTZMX_ZZHFSJ",align: "center", width: "16%"},
  44. { display:"累计跳闸次数", name: "XLTZMX_LJTZCS", align: "center", width: "16%"}
  45. ];
  46. var options={
  47. columns:columns,
  48. url:"/nwyj/ws/SystemDataSourceChartServiceImpl/SystemDataSourceChartServiceImpl/getBreakerSummaryReportDetailByDeptInfo",
  49. params: [
  50. {name:"reportId",value:params.reportId},
  51. {name:"compId",value:params.compId}
  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+"线路跳闸详情");
  74. }
  75. </script>
  76. </body>
  77. </html>