| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <form name="otherCardForm" action="" method='post'>
- <div class="forum-container temp-form" >
- <input type="hidden" id="otherCardId" name="otherCardId" value="">
- <table style="width:100%">
- <tr>
- <td colspan="6">
- <c:forEach var="listPos" items="${listSmallType }">
- <c:if test="${listPos.big_type_id ==6 }">
- <input type="radio" name="other_type_id" id="other_type_id" value="${listPos.universalid }">${listPos.small_type_name }
- </c:if>
- </c:forEach>
- <input type="hidden" id="otherCardCheck" name="otherCardCheck" value="">
- </td>
- </tr>
- <tr>
- <td>证书名称<font color="red">*</font>:</td>
- <td><input type="text" name="other_card_name" id="other_card_name"
- class="default-text" /></td>
- <td>证书编号:</td>
- <td><input type="text" name="other_card_id"
- id="other_card_id" class="default-text" /></td>
- <td>专业:</td>
- <td><input type="text" name="other_major"
- id="other_major" class="default-text" /></td>
- </tr>
- <tr>
- <td>有效期至<font color="red">*</font>:</td>
- <td><input type="text" name="other_effective_date" id="other_effective_date" /></td>
- <td>借用信息:</td>
- <td colspan="3"><input type="text" name="other_remark"
- id="other_remark" class="default-text" /></td>
- </tr>
- <tr>
- <td>附件:</td>
- <td colspan="5">
- <jsp:include page="/include/file.jsp">
- <jsp:param name="fieldName" value="other_affix" />
- <jsp:param name="folder" value="yongfu/staff" />
- <jsp:param name="documentId" value="" />
- <jsp:param name="size" value="10" />
- <jsp:param name="isView" value="1" />
- <jsp:param name="isDelFile" value="1" />
- <jsp:param name="definedCss" value="file-style" />
- </jsp:include>
- </td>
- </tr>
- </table>
- <div style="margin: 5px auto; text-align: left">
- <input type="button" value="清空" id="resetBtn"
- class="l-button" style="width: 100px;" onclick="resetForm()" />
- <input type="button" value="保存" id="saveBtn"
- class="l-button" style="width: 100px;" onclick="submitSaveOther();" />
- </div>
- </div>
- <div position="center" title="">
- <div id="maingrid10" style="margin: 0; padding: 0"></div>
- </div>
- </form>
|