1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <%@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%">接待名称: </th>
- <td><input type="text" id="FName" name="FName" value="${reception.FName}" class="inputText" validate="{required:false,maxlength:50}" /></td>
- </tr>
- <tr>
- <th width="20%">接待事由: </th>
- <td><input type="text" id="FCause" name="FCause" value="${reception.FCause}" class="inputText" validate="{required:false,maxlength:50}" /></td>
- </tr>
- <tr>
- <th width="20%">接待对象: </th>
- <td><input type="text" id="FReceptionist" name="FReceptionist" value="${reception.FReceptionist}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- <tr>
- <th width="20%">接待日期: </th>
- <td><input type="text" id="FTime" name="FTime" value="<fmt:formatDate value='${reception.FTime}' pattern='yyyy-MM-dd'/>" class="inputText date" validate="{date:true}" /></td>
- </tr>
- <tr>
- <th width="20%">接待部门: </th>
- <td><input type="text" id="FDeptName" name="FDeptName" value="${reception.FDeptName}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- <tr>
- <th width="20%">负责人: </th>
- <td><input type="text" id="FPerson" name="FPerson" value="${reception.FPerson}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- <tr>
- <th width="20%">用车数量: </th>
- <td><input type="text" id="FCarNumber" name="FCarNumber" value="${reception.FCarNumber}" class="inputText" validate="{required:false,maxlength:100}" /></td>
- </tr>
- <tr>
- <th width="20%">接待费用: </th>
- <td><input type="text" id="FCost" name="FCost" value="${reception.FCost}" class="inputText" validate="{required:false,number:true }" /></td>
- </tr>
- <tr>
- <th width="20%">备注: </th>
- <td><input type="text" id="FRemarks" name="FRemarks" value="${reception.FRemarks}" class="inputText" validate="{required:false}" /></td>
- </tr>
- </table>
- <input type="hidden" name="id" value="${reception.id}" />
|