123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>江苏省港口建设与经营管理信息系统</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/gkjsgl/tzjhgl/tzjhgldetail.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- tzjhgl.detail.init();
- initXmlbsel('xmlbsel','${record.xmlb }','80%');
- initSfyzjbzsel('sfyzjbz','${record.sfyzjbz }','change','80%');
- sfyzjbz();
- });
- function change(){
- if($("#sfyzjbzid").val()==201){
- $("#bzzj").show();
- }else{
- $("#bzzj").hide();
- $("#zybzzj").val("");
- $("#sbzzj").val("");
- }
- }
- function sfyzjbz(){
- $("#bzzj").hide();
- sfyzjbz='${record.sfyzjbz}';
- if(sfyzjbz==201){
- $("#bzzj").show();
- }
- };
- </script>
- </head>
- <body>
- <div class="box" >
- <div class="box-content" >
- <div class="apply_fill">
- <form id="addform" method="post">
- <input type="hidden" class="form-control" name="id" id="id" value="${record.id }">
- <input type="hidden" class="form-control" name="xmxxglid" id="xmid" value="${record.xmid }">
- <table class="apply" cellpadding="0" cellspacing="0">
- <tr>
- <th><span class="needwrite">*</span>项目名称: </th>
- <td colspan="4" >
- <input type="text" style="width: 92.5%;" class="form-control" name="xmmc" value="${record.xmmczw }" readonly>
- </td>
- <td>
- </td>
- </tr>
- <tr>
- <th>港口: </th>
- <td >
- <input type="text" class="form-control" name="szgk" value="${record.szgkzw }" readonly>
- </td>
- <th>港区: </th>
- <td >
- <input type="text" class="form-control" name="szgq" value="${record.szgqzw }" readonly>
- </td>
- </tr>
-
- <tr>
- <th>计划年度: </th>
- <td >
- <input type="text" class="form-control" name="jhnd" id="jhnd" value="${record.jhnd }" readonly>
- </td>
- <th><span class="needwrite">*</span>年度计划投资(万元): </th>
- <td >
- <input type="text" class="form-control" name="ndjhtz" id="ndjhtz" value="${record.ndjhtz }" onkeyup="num(this)">
- </td>
- </tr>
- <tr>
- <th><span class="needwrite">*</span>所属计划: </th>
- <td>
- <div id="xmlbsel"></div>
- </td>
- <th>是否有资金补助: </th>
- <td>
- <div id="sfyzjbz"></div>
- </td>
- </tr>
- <tr id="bzzj">
- <th>中央补助资金(万元): </th>
- <td>
- <input type="text" class="form-control" name="zybzzj" id="zybzzj" value="${record.zybzzj }" onkeyup="num(this)">
- </td>
- <th>省补助资金(万元): </th>
- <td>
- <input type="text" class="form-control" name="sbzzj" id="sbzzj" value="${record.sbzzj }" onkeyup="num(this)">
- </td>
- </tr>
- </table>
- </form>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="tzjhgl.detail.saveedit()">
- <i class="glyphicon glyphicon-floppy-disk"></i>
- 保存</a>
- <a class="btn btn-default btn-sm" href="#" onclick="tzjhgl.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 返回</a>
- </div>
-
- </div>
- </div>
- </div>
-
- </body>
- </html>
|