otherCardInfo.jsp 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <form name="otherCardForm" action="" method='post'>
  4. <!-- 是否为 查看-->
  5. <c:if test="${isView != 1}">
  6. <div class="forum-container temp-form" >
  7. <input type="hidden" id="otherCardId" name="otherCardId" value="">
  8. <table style="width:100%">
  9. <tr>
  10. <!-- <td colspan="6"> -->
  11. <%-- <c:forEach var="listPos" items="${listSmallType }"> --%>
  12. <%-- <c:if test="${listPos.big_type_id ==2 }"> --%>
  13. <%-- <input type="radio" name="other_type_id" id="other_type_id" value="${listPos.universalid }">${listPos.small_type_name }&nbsp; --%>
  14. <%-- </c:if> --%>
  15. <%-- </c:forEach> --%>
  16. <!-- <input type="hidden" id="otherCardCheck" name="otherCardCheck" value=""> -->
  17. <!-- </td> -->
  18. </tr>
  19. <tr>
  20. <td>证书名称<font color="red">*</font>:</td>
  21. <td colspan="1">
  22. <select id="other_card_name" name="other_card_name">
  23. <option value="">--请选择--</option>
  24. <c:forEach items="${certificatetype}" var="certificate">
  25. <c:choose>
  26. <c:when test="${certificate.isDefault eq '1' }"><option value="${certificate.dvalue },${certificate.dname }" selected="selected">${certificate.dname }</option></c:when>
  27. <c:otherwise><option value="${certificate.dvalue },${certificate.dname }">${certificate.dname }</option></c:otherwise>
  28. </c:choose>
  29. </c:forEach>
  30. </select>
  31. </td>
  32. <!-- <td><input type="text" name="other_card_name" id="other_card_name" -->
  33. <!-- class="default-text" /></td> -->
  34. <td>证书编号:</td>
  35. <td><input type="text" name="other_card_id"
  36. id="other_card_id" class="default-text" /></td>
  37. <td>专业:</td>
  38. <td><input type="text" name="other_major"
  39. id="other_major" class="default-text" /></td>
  40. </tr>
  41. <tr>
  42. <td>有效期至<font color="red">*</font>:</td>
  43. <td><input type="text" name="other_effective_date" id="other_effective_date" /></td>
  44. <td>附件:</td>
  45. <td colspan="3">
  46. <jsp:include page="/include/file.jsp">
  47. <jsp:param name="fieldName" value="other_affix" />
  48. <jsp:param name="folder" value="hr/staff" />
  49. <jsp:param name="documentId" value="" />
  50. <jsp:param name="size" value="10" />
  51. <jsp:param name="isView" value="1" />
  52. <jsp:param name="isDelFile" value="1" />
  53. <jsp:param name="definedCss" value="file-style" />
  54. </jsp:include>
  55. </td>
  56. </tr>
  57. </table>
  58. <div style="margin: 5px auto; text-align: left">
  59. &nbsp;<input type="button" value="清空" id="resetBtn"
  60. class="l-button" style="width: 100px;" onclick="resetForm()" />&nbsp;
  61. <input type="button" value="保存" id="saveBtn"
  62. class="l-button" style="width: 100px;" onclick="submitSaveOther();" />
  63. </div>
  64. </div>
  65. </c:if>
  66. <div position="center" title="">
  67. <div id="maingrid6" style="margin: 0; padding: 0"></div>
  68. </div>
  69. </form>