1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <%@ 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/gg/ggdetail.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
-
- gg.detail.istopDate='${sflist}';
- gg.detail.sendDate='${sflist}';
- gg.detail.istop='${record.istop}';
- gg.detail.send='${record.sendStatus}';
- gg.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>标题: </th>
- <td colspan="3">
- <input type="text" class="form-control" name="bt" value="${record.bt }">
- </td>
- </tr>
-
- <tr>
- <th>是否置顶: </th>
- <td colspan="3">
- <%-- <input type="text" class="form-control" name="istop" value="${record.istop }"> --%>
- <div id="istopSel"></div>
- </td>
- <%-- <th>是否发布: </th>
- <td >
- <input type="text" class="form-control" name="sendStatus" value="${record.sendStatus }">
- <div id="sendSel"></div>
- </td> --%>
- </tr>
- <tr>
- <th>内容 : </th>
- <td colspan="3">
- <textarea class="form-control" name="nr" style="margin: 0px auto 0px 5px; width: 700px; height: 300px;">${record.nr }</textarea>
- </td>
- </tr>
- </table>
- </form>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="gg.detail.save()">
- <i class="glyphicon glyphicon-floppy-disk"></i>
- 保存</a>
- <a class="btn btn-default btn-sm" href="#" onclick="gg.detail.submit()">
- <i class="glyphicon glyphicon-share"></i>
- 提交</a>
- <a class="btn btn-default btn-sm" href="#" onclick="gg.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 返回</a>
- </div>
- </div>
-
- </div>
- </div>
- </body>
- </html>
|