| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <form name="otherCardForm" action="" method='post'>
- <!-- 是否为 查看-->
- <c:if test="${isView != 1}">
- <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 ==2 }"> --%>
- <%-- <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 colspan="1">
- <select id="other_card_name" name="other_card_name">
- <option value="">--请选择--</option>
- <c:forEach items="${certificatetype}" var="certificate">
- <c:choose>
- <c:when test="${certificate.isDefault eq '1' }"><option value="${certificate.dvalue },${certificate.dname }" selected="selected">${certificate.dname }</option></c:when>
- <c:otherwise><option value="${certificate.dvalue },${certificate.dname }">${certificate.dname }</option></c:otherwise>
- </c:choose>
- </c:forEach>
- </select>
- </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">
- <jsp:include page="/include/file.jsp">
- <jsp:param name="fieldName" value="other_affix" />
- <jsp:param name="folder" value="hr/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>
- </c:if>
- <div position="center" title="">
- <div id="maingrid6" style="margin: 0; padding: 0"></div>
- </div>
- </form>
|