1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <%@ page 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/jdtx/jdtxdetail.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- jdtx.detail.init();
- });
- </script>
- </head>
- <body>
- <div class="box" >
- <div class="box-content" >
- <div class="apply_fill">
- <form id="addform" method="post">
- <table class="apply" cellpadding="0" cellspacing="0">
- <tr>
- <th>标题: </th>
- <td colspan="3">
- ${record.bt }
- </td>
- </tr>
- <tr>
- <th>
- 填写人:
- </th>
- <td>
- ${record.txrzw }
- </td>
- <th>
- 填写时间:
- </th>
- <td>
- ${record.txsjfmt }
- </td>
- </tr>
- <tr>
- <th>内容: </th>
- <td colspan="3" id="bzhh">
- ${record.nr }
- </td>
- </tr>
- </table>
- </form>
- <div id="buttons">
-
- <a class="btn btn-default btn-sm" href="#" onclick="jdtx.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 返回</a>
- </div>
- </div>
-
- </div>
- </div>
- </body>
- </html>
|