10a1d9d7a519e25d9ba86947f262cc878f0e9a6d.svn-base 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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: "STATION_NAME", align: "center", width: "25%"},
  39. { display:"电压等级", name: "ROUTE_LEVEL",align: "center", width: "25%"},
  40. { display:"所属单位", name: "COMP_NAME",align: "center", width: "25%"},
  41. { display:"停运时间", name: "STOP_TIME",align: "center", width: "25%"}
  42. ];
  43. var options={
  44. columns:columns,
  45. url:"/nwyj/ws/ChartServiceImpl/ChartServiceImpl/getDetailInfo",
  46. params: [{name:"sqlName",value:"getLineDetailInfo"},
  47. {name:"recodeId",value:params.recordId},
  48. {name:"type",value:params.levelLabel},
  49. {name:"tableName",value:"bdz_xq_detail-SUBSTATION_STOPPAGE_RECOVERY_VIEW"}
  50. ] ,
  51. pageSize:10,
  52. usePager:false,
  53. percentWidthMode:true,
  54. height:"100%",
  55. method: "post",
  56. width:"100%",
  57. usePager : false,
  58. isScroll: true,
  59. percentWidthMode : false,
  60. alternatingRow: false,
  61. rowAttrRender: function(rowdata, rowindex, rowid){
  62. return rowdata["__index"] % 2 == 0 ? "style='background-color:rgb(44,51,79);'" : "style='background-color:rgb(34,40,62);'" ;
  63. }
  64. };
  65. $(function(){
  66. grid=$("#i_page_grid").quiGrid(options);
  67. setTitle();
  68. close();
  69. });
  70. function setTitle(){
  71. $("#i_page_hed").text(params.text+params.level+"变电站停运详情表");
  72. }
  73. </script>
  74. </body>
  75. </html>