otherCardInfo.jsp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <div class="forum-container temp-form" >
  5. <input type="hidden" id="otherCardId" name="otherCardId" value="">
  6. <table style="width:100%">
  7. <tr>
  8. <td colspan="6">
  9. <c:forEach var="listPos" items="${listSmallType }">
  10. <c:if test="${listPos.big_type_id ==6 }">
  11. <input type="radio" name="other_type_id" id="other_type_id" value="${listPos.universalid }">${listPos.small_type_name }&nbsp;
  12. </c:if>
  13. </c:forEach>
  14. <input type="hidden" id="otherCardCheck" name="otherCardCheck" value="">
  15. </td>
  16. </tr>
  17. <tr>
  18. <td>证书名称<font color="red">*</font>:</td>
  19. <td><input type="text" name="other_card_name" id="other_card_name"
  20. class="default-text" /></td>
  21. <td>证书编号:</td>
  22. <td><input type="text" name="other_card_id"
  23. id="other_card_id" class="default-text" /></td>
  24. <td>专业:</td>
  25. <td><input type="text" name="other_major"
  26. id="other_major" class="default-text" /></td>
  27. </tr>
  28. <tr>
  29. <td>有效期至<font color="red">*</font>:</td>
  30. <td><input type="text" name="other_effective_date" id="other_effective_date" /></td>
  31. <td>借用信息:</td>
  32. <td colspan="3"><input type="text" name="other_remark"
  33. id="other_remark" class="default-text" /></td>
  34. </tr>
  35. <tr>
  36. <td>附件:</td>
  37. <td colspan="5">
  38. <jsp:include page="/include/file.jsp">
  39. <jsp:param name="fieldName" value="other_affix" />
  40. <jsp:param name="folder" value="yongfu/staff" />
  41. <jsp:param name="documentId" value="" />
  42. <jsp:param name="size" value="10" />
  43. <jsp:param name="isView" value="1" />
  44. <jsp:param name="isDelFile" value="1" />
  45. <jsp:param name="definedCss" value="file-style" />
  46. </jsp:include>
  47. </td>
  48. </tr>
  49. </table>
  50. <div style="margin: 5px auto; text-align: left">
  51. &nbsp;<input type="button" value="清空" id="resetBtn"
  52. class="l-button" style="width: 100px;" onclick="resetForm()" />&nbsp;
  53. <input type="button" value="保存" id="saveBtn"
  54. class="l-button" style="width: 100px;" onclick="submitSaveOther();" />
  55. </div>
  56. </div>
  57. <div position="center" title="">
  58. <div id="maingrid10" style="margin: 0; padding: 0"></div>
  59. </div>
  60. </form>