reserveManagementModifyByjl.jsp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>项目储备信息</title>
  6. <meta name="decorator" content="ani"/>
  7. <script type="text/javascript">
  8. $(document).ready(function() {
  9. $('#disclosureFinishDate').datetimepicker({
  10. format: "YYYY-MM-DD"
  11. });
  12. });
  13. function save() {
  14. var isValidate = jp.validateForm('#inputForm');//校验表单
  15. if(!isValidate){
  16. return false;
  17. }else{
  18. jp.loading();
  19. jp.post("${ctx}/sg/managementCenter/reserveManagement/update",$('#inputForm').serialize(),function(data){
  20. if(data.success){
  21. jp.getParent().refresh();
  22. var dialogIndex = parent.layer.getFrameIndex(window.name); // 获取窗口索引
  23. parent.layer.close(dialogIndex);
  24. jp.success(data.msg)
  25. }else{
  26. jp.error(data.msg);
  27. }
  28. })
  29. }
  30. }
  31. </script>
  32. </head>
  33. <body class="bg-white">
  34. <form:form id="inputForm" modelAttribute="reserveManagement" class="form-horizontal">
  35. <form:hidden path="id"/>
  36. <table class="table table-bordered">
  37. <tbody>
  38. <tr>
  39. <td colspan="4" class="width-15 active"><label class="">方案交底组织:</label></td>
  40. </tr>
  41. <tr>
  42. <td class="width-15 active"><label class="">交底牵头部门:</label></td>
  43. <td class="width-35">
  44. <form:input path="disclosureToCoordinate" htmlEscape="false" class="form-control"/>
  45. </td>
  46. <td class="width-15 active"><label class="">交底参与部门:</label></td>
  47. <td class="width-35">
  48. <form:input path="disclosureParticipate" htmlEscape="false" class="form-control"/>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td class="width-15 active"><label class="">是否完成交底:</label></td>
  53. <td class="width-35">
  54. <select id="whetherFinishDisclosure" name="whetherFinishDisclosure" class="form-control">
  55. <option value="">请选择</option>
  56. <option value="1" <c:if test="${reserveManagement.whetherFinishDisclosure=='1'}">selected</c:if>>是</option>
  57. <option value="0" <c:if test="${reserveManagement.whetherFinishDisclosure=='0'}">selected</c:if>>否</option>
  58. </select>
  59. </td>
  60. <td class="width-15 active"><label class="">项目管理中心人员:</label></td>
  61. <td class="width-35">
  62. <form:input path="projectManagementPeople" htmlEscape="false" class="form-control"/>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td class="width-15 active"><label class="">设计院人员:</label></td>
  67. <td class="width-35">
  68. <form:input path="designingInstitutePeople" htmlEscape="false" class="form-control"/>
  69. </td>
  70. <td class="width-15 active"><label class="">经研所人员:</label></td>
  71. <td class="width-35">
  72. <form:input path="ifoPeople" htmlEscape="false" class="form-control"/>
  73. </td>
  74. </tr>
  75. <tr>
  76. <td class="width-15 active"><label class="">区域中心人员:</label></td>
  77. <td class="width-35">
  78. <form:input path="regionalCenterPeople" htmlEscape="false" class="form-control"/>
  79. </td>
  80. <td class="width-15 active"><label class="">不停电作业中心人员:</label></td>
  81. <td class="width-35">
  82. <form:input path="uninterruptedOperationPeople" htmlEscape="false" class="form-control"/>
  83. </td>
  84. </tr>
  85. <tr>
  86. <td class="width-15 active"><label class="">作业方式:</label></td>
  87. <td class="width-35">
  88. <form:input path="workMode" htmlEscape="false" class="form-control"/>
  89. </td>
  90. <td class="width-15 active"><label class="">交底完成日期:</label></td>
  91. <td class="width-35">
  92. <div class='input-group form_datetime' id='disclosureFinishDate'>
  93. <input type='text' name="disclosureFinishDate" class="form-control required" value="<fmt:formatDate value="${reserveManagement.disclosureFinishDate}" pattern="yyyy-MM-dd"/>"/>
  94. <span class="input-group-addon">
  95. <span class="glyphicon glyphicon-calendar"></span>
  96. </span>
  97. </div>
  98. </td>
  99. </tr>
  100. <tr>
  101. <td class="width-15 active"><label class="">备注:</label></td>
  102. <td class="width-35">
  103. <form:textarea path="disclosureRemarks" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  104. </td>
  105. </tr>
  106. <tr>
  107. <td colspan="4" class="width-15 active"><label class="">方案交底结论:</label></td>
  108. </tr>
  109. <tr>
  110. <td class="width-15 active"><label class="">立项说明:</label></td>
  111. <td class="width-35">
  112. <form:textarea path="projectDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  113. </td>
  114. <td class="width-15 active"><label class="">不具备立项条件说明:</label></td>
  115. <td class="width-35">
  116. <form:textarea path="doNotPossessProjectDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  117. </td>
  118. </tr>
  119. <tr>
  120. <td class="width-15 active"><label class="">方案变更说明:</label></td>
  121. <td class="width-35">
  122. <form:textarea path="changedProgramsExplain" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  123. </td>
  124. <td class="width-15 active"><label class="">政处难度初判:</label></td>
  125. <td class="width-35">
  126. <form:input path="initialDifficulty" htmlEscape="false" class="form-control"/>
  127. </td>
  128. </tr>
  129. <tr>
  130. <td class="width-15 active"><label class="">是否有资本设备:</label></td>
  131. <td class="width-35">
  132. <select id="capitalEquipment" name="capitalEquipment" class="form-control">
  133. <option value="">请选择</option>
  134. <option value="1" <c:if test="${reserveManagement.capitalEquipment=='1'}">selected</c:if>>是</option>
  135. <option value="0" <c:if test="${reserveManagement.capitalEquipment=='0'}">selected</c:if>>否</option>
  136. </select>
  137. </td>
  138. <td class="width-15 active"><label class="">是否有变电站新出线:</label></td>
  139. <td class="width-35">
  140. <select id="substationNewLine" name="substationNewLine" class="form-control">
  141. <option value="">请选择</option>
  142. <option value="1" <c:if test="${reserveManagement.substationNewLine=='1'}">selected</c:if>>是</option>
  143. <option value="0" <c:if test="${reserveManagement.substationNewLine=='0'}">selected</c:if>>否</option>
  144. </select>
  145. </td>
  146. </tr>
  147. <tr>
  148. <td class="width-15 active"><label class="">是否已实施:</label></td>
  149. <td class="width-35">
  150. <select id="whetherImplement" name="whetherImplement" class="form-control">
  151. <option value="">请选择</option>
  152. <option value="1" <c:if test="${reserveManagement.whetherImplement=='1'}">selected</c:if>>是</option>
  153. <option value="0" <c:if test="${reserveManagement.whetherImplement=='0'}">selected</c:if>>否</option>
  154. </select>
  155. </td>
  156. <td class="width-15 active"><label class="">现场情况描述:</label></td>
  157. <td class="width-35">
  158. <form:textarea path="fieldDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  159. </td>
  160. </tr>
  161. <tr>
  162. <td class="width-15 active"><label class="">是否有实施必要性:</label></td>
  163. <td class="width-35">
  164. <select id="necessaryOfImplementation" name="necessaryOfImplementation" class="form-control">
  165. <option value="">请选择</option>
  166. <option value="1" <c:if test="${reserveManagement.necessaryOfImplementation=='1'}">selected</c:if>>是</option>
  167. <option value="0" <c:if test="${reserveManagement.necessaryOfImplementation=='0'}">selected</c:if>>否</option>
  168. </select>
  169. </td>
  170. <td class="width-15 active"><label class="">实施无必要描述:</label></td>
  171. <td class="width-35">
  172. <form:textarea path="unnecessaryDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  173. </td>
  174. </tr>
  175. <tr>
  176. <td class="width-15 active"><label class="">是否存在前置条件:</label></td>
  177. <td class="width-35">
  178. <select id="precondition" name="precondition" class="form-control">
  179. <option value="">请选择</option>
  180. <option value="1" <c:if test="${reserveManagement.precondition=='1'}">selected</c:if>>是</option>
  181. <option value="0" <c:if test="${reserveManagement.precondition=='0'}">selected</c:if>>否</option>
  182. </select>
  183. </td>
  184. <td class="width-15 active"><label class="">前置条件描述:</label></td>
  185. <td class="width-35">
  186. <form:textarea path="conditionsDescribed" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  187. </td>
  188. </tr>
  189. <tr>
  190. <td class="width-15 active"><label class="">是否存在施工方案问题:</label></td>
  191. <td class="width-35">
  192. <select id="constructionSchemeProblem" name="constructionSchemeProblem" class="form-control">
  193. <option value="">请选择</option>
  194. <option value="1" <c:if test="${reserveManagement.constructionSchemeProblem=='1'}">selected</c:if>>是</option>
  195. <option value="0" <c:if test="${reserveManagement.constructionSchemeProblem=='0'}">selected</c:if>>否</option>
  196. </select>
  197. </td>
  198. <td class="width-15 active"><label class="">施工方案问题描述:</label></td>
  199. <td class="width-35">
  200. <form:textarea path="problemDescriptionOfConstructionScheme" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  201. </td>
  202. </tr>
  203. <tr>
  204. <td class="width-15 active"><label class="">现场是否存在安全隐患:</label></td>
  205. <td class="width-35">
  206. <select id="existingSecurityThreat" name="existingSecurityThreat" class="form-control">
  207. <option value="">请选择</option>
  208. <option value="1" <c:if test="${reserveManagement.existingSecurityThreat=='1'}">selected</c:if>>是</option>
  209. <option value="0" <c:if test="${reserveManagement.existingSecurityThreat=='0'}">selected</c:if>>否</option>
  210. </select>
  211. </td>
  212. <td class="width-15 active"><label class="">安全隐患描述:</label></td>
  213. <td class="width-35">
  214. <form:textarea path="safetyHazardDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  215. </td>
  216. </tr>
  217. <tr>
  218. <td class="width-15 active"><label class="">是否需要定制物资:</label></td>
  219. <td class="width-35">
  220. <select id="customizedMaterials" name="customizedMaterials" class="form-control">
  221. <option value="">请选择</option>
  222. <option value="1" <c:if test="${reserveManagement.customizedMaterials=='1'}">selected</c:if>>是</option>
  223. <option value="0" <c:if test="${reserveManagement.customizedMaterials=='0'}">selected</c:if>>否</option>
  224. </select>
  225. </td>
  226. <td class="width-15 active"><label class="">定制物资描述:</label></td>
  227. <td class="width-35">
  228. <form:textarea path="materialDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  229. </td>
  230. </tr>
  231. <tr>
  232. <td class="width-15 active"><label class="">是否有拆旧物资:</label></td>
  233. <td class="width-35">
  234. <select id="dismantlingTheOldMaterial" name="dismantlingTheOldMaterial" class="form-control">
  235. <option value="">请选择</option>
  236. <option value="1" <c:if test="${reserveManagement.dismantlingTheOldMaterial=='1'}">selected</c:if>>是</option>
  237. <option value="0" <c:if test="${reserveManagement.dismantlingTheOldMaterial=='0'}">selected</c:if>>否</option>
  238. </select>
  239. </td>
  240. <td class="width-15 active"><label class="">作业方式:</label></td>
  241. <td class="width-35">
  242. <form:input path="operatingType" htmlEscape="false" class="form-control"/>
  243. </td>
  244. </tr>
  245. <tr>
  246. <td class="width-15 active"><label class="">是否有土建工作量:</label></td>
  247. <td class="width-35">
  248. <select id="civilWork" name="civilWork" class="form-control">
  249. <option value="">请选择</option>
  250. <option value="1" <c:if test="${reserveManagement.civilWork=='1'}">selected</c:if>>是</option>
  251. <option value="0" <c:if test="${reserveManagement.civilWork=='0'}">selected</c:if>>否</option>
  252. </select>
  253. </td>
  254. <td class="width-15 active"><label class="">停电问题描述:</label></td>
  255. <td class="width-35">
  256. <form:textarea path="problemDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  257. </td>
  258. </tr>
  259. <tr>
  260. <td class="width-15 active"><label class="">是否有立杆工作量:</label></td>
  261. <td class="width-35">
  262. <select id="verticalRodWorkload" name="verticalRodWorkload" class="form-control">
  263. <option value="">请选择</option>
  264. <option value="1" <c:if test="${reserveManagement.verticalRodWorkload=='1'}">selected</c:if>>是</option>
  265. <option value="0" <c:if test="${reserveManagement.verticalRodWorkload=='0'}">selected</c:if>>否</option>
  266. </select>
  267. </td>
  268. <td class="width-15 active"><label class="">总工作量描述:</label></td>
  269. <td class="width-35">
  270. <form:textarea path="totalWorkloadDescription" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  271. </td>
  272. </tr>
  273. <tr>
  274. <td class="width-15 active"><label class="">区域中心:</label></td>
  275. <td class="width-35">
  276. <form:input path="regionalCenter" htmlEscape="false" class="form-control"/>
  277. </td>
  278. <td class="width-15 active"><label class="">供电所辖区:</label></td>
  279. <td class="width-35">
  280. <form:input path="powerSupplyArea" htmlEscape="false" class="form-control"/>
  281. </td>
  282. </tr>
  283. <tr>
  284. <td class="width-15 active"><label class="">政处地点:</label></td>
  285. <td class="width-35">
  286. <form:input path="zhengLocation" htmlEscape="false" class="form-control"/>
  287. </td>
  288. <td class="width-15 active"><label class="">政处类型(可多类):</label></td>
  289. <td class="width-35">
  290. <form:input path="zhengType" htmlEscape="false" class="form-control"/>
  291. </td>
  292. </tr>
  293. <tr>
  294. <td class="width-15 active"><label class="">政处对象(产权单位):</label></td>
  295. <td class="width-35">
  296. <form:input path="zhengObject" htmlEscape="false" class="form-control"/>
  297. </td>
  298. <td class="width-15 active"><label class="">政处描述:</label></td>
  299. <td class="width-35">
  300. <form:textarea path="zhengDescribe" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  301. </td>
  302. </tr>
  303. <tr>
  304. <td class="width-15 active"><label class="">是否需规划报批:</label></td>
  305. <td class="width-35">
  306. <select id="projectApproval" name="projectApproval" class="form-control">
  307. <option value="">请选择</option>
  308. <option value="1" <c:if test="${reserveManagement.projectApproval=='1'}">selected</c:if>>是</option>
  309. <option value="0" <c:if test="${reserveManagement.projectApproval=='0'}">selected</c:if>>否</option>
  310. </select>
  311. </td>
  312. <td class="width-15 active"><label class="">是否需办理安评航评手续:</label></td>
  313. <td class="width-35">
  314. <select id="courseEvaluationProcedures" name="courseEvaluationProcedures" class="form-control">
  315. <option value="">请选择</option>
  316. <option value="1" <c:if test="${reserveManagement.courseEvaluationProcedures=='1'}">selected</c:if>>是</option>
  317. <option value="0" <c:if test="${reserveManagement.courseEvaluationProcedures=='0'}">selected</c:if>>否</option>
  318. </select>
  319. </td>
  320. </tr>
  321. <tr>
  322. <td class="width-15 active"><label class="">政处难点提醒:</label></td>
  323. <td class="width-35">
  324. <form:textarea path="zhengDifficultyWarn" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
  325. </td>
  326. </tr>
  327. </tbody>
  328. </table>
  329. </form:form>
  330. </body>
  331. </html>