1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>级别调整</title>
- <!--框架必需start-->
- <%@include file="../../../include2.jsp" %>
- <!--框架必需end-->
- <!--基本选项卡start-->
- <!-- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/nav/basicTabModern.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/business/am/ContingercyPlan/PlanGradeYJMsg.js"></script> -->
- <!--基本选项卡end-->
- </head>
- <body>
- <script type="text/javascript">
- var fd_id = "<%=request.getParameter("fd_id")%>";
- $(function(){
- //保供电级别
- var url = $.pathname() + '/ws/crud/CRUDService/getDataById/';
- var params = {
- classid : '610',
- objectID : fd_id
- };
- $('#GPS_LEVEL_610').initCanstSelect('BM_GPS_PROGRAM_MANAGE_GPS_LEVEL');
- $.request.query(url,params,function(data){
- $('#GPS_LEVEL_610').setValue(data.GPS_LEVEL_610_SHOW);
- $('#fillForm').ajaxWrite({data:data});
- $('#fillForm input[name="classid"]').val('610');
- });
- });
- </script>
- <!-- <div class="box1" panelWidth="100%"> -->
- <form id="fillForm" name="fillForm" method="post" action="" failAlert="表单填写不正确,请按要求填写!">
- <div style="overflow-x: hidden; overflow-y: auto;height: 430px;">
- <div class="groupTitle" ><span>级别调整</span></div>
- <input name="classid" value="610" type="hidden" />
- <input type="hidden" name="FD_OBJECTID610" value=""/>
- <table class="tableStyle" formMode="transparent" footer="normal">
- <!-- <div>
- <fieldset width="95%"><ul>应急组织:<input type="text" id=EARLY_WARNING_AREA_ID_365 name="EARLY_WARNING_AREA_ID_365" onkeydown="if(event.keyCode==13){searchHandler();}"/></ul></fieldset>
- <ul id="tree-1" class="ztree"></ul>
- </div> -->
- <tr>
- <td width="20%" align="right">保供电级别:</td>
- <td width="33%"><select id="GPS_LEVEL_610" name="GPS_LEVEL_610" selWidth="200"></select></td></tr>
- <!-- <select id="GPS_LEVEL_610" name="GPS_LEVEL_610" selWidth="290" prompt="请选择"></select> -->
- </table>
- <br/>
- </div>
- </form>
- </body>
- </html>
|