educationInfo.jsp 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <script type="text/javascript">
  4. $(function() {
  5. });
  6. </script>
  7. <form name="educationForm" action="hrEmployEntryAction.do" method='post'>
  8. <input type="hidden" id="task" name="task" value="addEmployEduInfo"/>
  9. <input type="hidden" id="eduInfo.iemploy_staff_id" name="eduInfo.iemploy_staff_id" value="${employStaff.universalid }"/>
  10. <input type="hidden" id="eduInfo.universalid" name="eduInfo.universalid" value=""/>
  11. <input type="hidden" id="eduInfo.unit_id" name="eduInfo.unit_id" value="${employStaff.unit_id }"/>
  12. <div class="forum-container temp-form" >
  13. <input type="hidden" id="educationId" name="educationId"
  14. value="">
  15. <table style="width:100%">
  16. <tr>
  17. <td>学习类型:</td>
  18. <td><input type="text" name="eduInfo.study_type" id="eduInfo.study_type"
  19. class="default-text" /></td>
  20. <td>学校名称<font color="red">*</font>:
  21. </td>
  22. <td><input type="text" name="eduInfo.study_school_name"
  23. id="eduInfo.study_school_name" class="default-text" /></td>
  24. <td>专业:</td>
  25. <td><input type="text" name="eduInfo.study_subject"
  26. id="eduInfo.study_subject" class="default-text" /></td>
  27. </tr>
  28. <tr>
  29. <td>学历:</td>
  30. <td>
  31. <select name="eduInfo.study_educational_background" id="eduInfo.study_educational_background">
  32. <c:forEach var="list" items="${listEducationalData}">
  33. <option value="${list.dvalue }">${list.dname }</option>
  34. </c:forEach>
  35. </select>
  36. </td>
  37. <td>学位:</td>
  38. <td><input type="text" name="eduInfo.study_degree" id="eduInfo.study_degree"
  39. class="default-text" /></td>
  40. <td></td>
  41. <td></td>
  42. </tr>
  43. <tr>
  44. <td>开始时间:</td>
  45. <td><input type="text" name="eduInfo.study_start_date"
  46. id="eduInfo.study_start_date" class="default-text" /></td>
  47. <td>结束时间:</td>
  48. <td><input type="text" name="eduInfo.study_end_date"
  49. id="eduInfo.study_end_date" class="default-text" />
  50. </td>
  51. <td></td>
  52. <td>
  53. </td>
  54. </tr>
  55. <%-- <tr>
  56. <td>上传附件:</td>
  57. <td colspan="5">
  58. <input type="hidden" id="eduInfo.study_affix" name="eduInfo.study_affix" value=""/>
  59. <jsp:include page="/include/file.jsp">
  60. <jsp:param name="fieldName" value="study_affix" />
  61. <jsp:param name="folder" value="hr/staff" />
  62. <jsp:param name="documentId" value="" />
  63. <jsp:param name="size" value="10" />
  64. <jsp:param name="isView" value="1" />
  65. <jsp:param name="isDelFile" value="1" />
  66. <jsp:param name="definedCss" value="file-style" />
  67. </jsp:include>
  68. </td>
  69. </tr> --%>
  70. </table>
  71. <div style="margin: 5px auto; text-align: left">
  72. &nbsp;<input type="button" value="清空" id="resetBtn"
  73. class="l-button" style="width: 100px;" onclick="resetForm()" />&nbsp;
  74. <input type="button" value="保存" id="saveBtn"
  75. class="l-button" style="width: 100px;" onclick="submitSaveEducation();" />
  76. </div>
  77. </div>
  78. <div position="center" title="" id="main2">
  79. <div id="maingrid2" style="margin: 0; padding: 0"></div>
  80. </div>
  81. </form>