1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>线路跳闸小于110kV电压明细</title>
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <script type="text/javascript" src="/nwyj/scripts/cockpit/cockpitIndex/context.js"></script>
- <!--框架必需start-->
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/jquery.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/language/cn.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/main.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/framework.js"></script>
- <link href="/nwyj/scripts/qui/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
- <link rel="stylesheet" type="text/css" id="skin" prePath="/nwyj/scripts/qui/" scrollerY="false"/>
- <link rel="stylesheet" type="text/css" id="customSkin"/>
- <!--框架必需end-->
- <!--grid组件start-->
- <script src="/nwyj/scripts/qui/libs/js/table/quiGrid.js" type="text/javascript"></script>
- <!--grid组件end-->
- <script type="text/javascript" src="/nwyj/scripts/cockpit/cockpitIndex/util.js"></script>
- <!-- <link rel="stylesheet" type="text/css" href="/nwyj/page/cockpit/webgis/js/gisgrid.css"> -->
- <link rel="stylesheet" type="text/css" href="/nwyj/page/cockpit/cockpit_layout/icon.css">
- <!-- <style type="text/css">
- .c_page_hed{background-color: #08094C}
- </style> -->
-
- <link rel="stylesheet" type="text/css" href="/nwyj/page/cockpit/webgis/js/jsc_grid.css">
- </head>
-
- <body>
- <div id="i_page_hed" class="c_page_hed">
- </div><div id="i_page_colse" class=" c_page_close index_icon_close_content"></div>
- <div id="i_page_grid_content" class="c_page_grid_content">
- <div id="i_page_grid" class="c_page_grid"></div>
- </div>
- <script type="text/javascript">
- var utils=new Util();
- var grid=null;
- var params=utils.resolveUrl();
- //alert(JSON.stringify(params));
- var columns=[{ display:"客户编号", name: "CLIENT_NUMBER", align: "center", width: "17%"},
- { display:"客户名称", name: "CLIENT_NAME", align: "center", width: "17%"},
- { display:"供电单位", name: "SUPPORT_STATION",align: "center", width: "17%"},
- { display:"电压等级(kV)", name: "ROUTE_LEVEL",align: "center", width: "17%"},
- { display:"停电时间", name: "STOP_TIME",align: "center", width: "17%"},
- { display:"是否自备电源", name: "IS_HAD", align: "center", width: "15%",
- render: function (rowdata, rowindex, value, column){
- return rowdata["IS_HAD"]==0?"自备":"未自备";
- }
- }];
-
- var options={
- columns:columns,
- url:"/nwyj/ws/ChartServiceImpl/ChartServiceImpl/getDetailInfo",
- params: [/* {name:"sqlName",value:"getPersonDetailInfo"},
- {name:"recodeId",value:params.recodeId},
- {name:"type",value:params.compId},
- {name:"tableName",value:"REPORT_LINE_DAOGAN_VIEW"} */
- {name:"tableName",value:"TDQK_XQ_DETAIL-REPORT_GDSUNSHI_KEHUTD_VIEW"},
- {name:"type",value:params.levelLabel},
- {name:"recodeId",value:params.recodeId},
- {name:"sqlName",value:"getLineDetailInfo"}
- ] ,
- pageSize:10,
- usePager:false,
- percentWidthMode:true,
- height:"100%",
- method: "post",
- width:"100%",
- usePager : false,
- isScroll: true,
- percentWidthMode : false,
- alternatingRow: false,
- rowAttrRender: function(rowdata, rowindex, rowid){
- return rowdata["__index"] % 2 == 0 ? "style='background-color:rgb(44,51,79);'" : "style='background-color:rgb(34,40,62);'" ;
- }
- };
- $(function(){
- grid=$("#i_page_grid").quiGrid(options);
- setTitle();
- close();
- });
- function setTitle(){
- $("#i_page_hed").text(params.text+params.level+"用户停电详情表");
- }
- </script>
- </body>
- </html>
|