12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <%@ 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/ggfwxxgl/tzgg/ggfb/ggfbdetail.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- ggfb.detail.init();
- });
- </script>
- </head>
- <body>
- <div class="box" >
- <div class="box-content" >
- <div class="apply_fill">
- <form id="addform" method="post">
- <input type="hidden" name="id" value="${record.id }">
- <table class="apply" cellpadding="0" cellspacing="0">
- <tr>
- <th>公告ID: </th>
- <td >
- <input type="text" class="form-control" name="ggid" value="${record.ggid }">
- </td>
- <th>发布人 : </th>
- <td >
- <input type="text" class="form-control" name="senduser" value="${record.senduser }">
- </td>
- </tr>
-
- <tr>
- <th>能看到公告的人: </th>
- <td >
- <input type="text" class="form-control" name="ggr" value="${record.ggr }">
- </td>
- <th>发布类型: </th>
- <td >
- <input type="text" class="form-control" name="fblx" value="${record.fblx }">
- </td>
- </tr>
- </table>
- </form>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="ggfb.detail.save()">
- <i class="glyphicon glyphicon-floppy-disk"></i>
- 保存</a>
- <a class="btn btn-default btn-sm" href="#" onclick="ggfb.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 返回</a>
- </div>
- </div>
-
- </div>
- </div>
- </body>
- </html>
|