12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}"/>
- <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
- <script type="text/javascript">
- function afterOnload(){
- var afterLoadJs=[
- '${ctx}/js/hotent/formdata.js',
- '${ctx}/js/hotent/subform.js'
- ];
- ScriptMgr.load({
- scripts : afterLoadJs
- });
- }
- </script>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0" type="main">
- <tr>
- <th width="20%">督查通知公告id: </th>
- <td><input type="text" id="bullentinid" name="bullentinid" value="${sysNoticeSupervisionReply.bullentinid}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- <tr>
- <th width="20%">人员id: </th>
- <td><input type="text" id="personnelid" name="personnelid" value="${sysNoticeSupervisionReply.personnelid}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- <tr>
- <th width="20%">组织ID: </th>
- <td><input type="text" id="organizationid" name="organizationid" value="${sysNoticeSupervisionReply.organizationid}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- <tr>
- <th width="20%">人员名称即提交人: </th>
- <td><input type="text" id="personnelname" name="personnelname" value="${sysNoticeSupervisionReply.personnelname}" class="inputText" validate="{required:false,maxlength:50}" /></td>
- </tr>
- <tr>
- <th width="20%">附件: </th>
- <td><input type="text" id="attachment" name="attachment" value="${sysNoticeSupervisionReply.attachment}" class="inputText" validate="{required:false,maxlength:400}" /></td>
- </tr>
- <tr>
- <th width="20%">组织名称: </th>
- <td><input type="text" id="organizationname" name="organizationname" value="${sysNoticeSupervisionReply.organizationname}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- <tr>
- <th width="20%">回复时间: </th>
- <td><input type="text" id="repllytime" name="repllytime" value="<fmt:formatDate value='${sysNoticeSupervisionReply.repllytime}' pattern='yyyy-MM-dd'/>" class="inputText date" validate="{date:true}" /></td>
- </tr>
- <tr>
- <th width="20%">回复标题: </th>
- <td><input type="text" id="replytitle" name="replytitle" value="${sysNoticeSupervisionReply.replytitle}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- </table>
- <input type="hidden" name="id" value="${sysNoticeSupervisionReply.id}" />
|