| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <script type="text/javascript">
- $(function() {
-
- });
- </script>
- <form name="educationForm" action="hrEmployEntryAction.do" method='post'>
- <input type="hidden" id="task" name="task" value="addEmployEduInfo"/>
- <input type="hidden" id="eduInfo.iemploy_staff_id" name="eduInfo.iemploy_staff_id" value="${employStaff.universalid }"/>
- <input type="hidden" id="eduInfo.universalid" name="eduInfo.universalid" value=""/>
- <input type="hidden" id="eduInfo.unit_id" name="eduInfo.unit_id" value="${employStaff.unit_id }"/>
- <div class="forum-container temp-form" >
- <input type="hidden" id="educationId" name="educationId"
- value="">
- <table style="width:100%">
- <tr>
- <td>学习类型:</td>
- <td><input type="text" name="eduInfo.study_type" id="eduInfo.study_type"
- class="default-text" /></td>
- <td>学校名称<font color="red">*</font>:
- </td>
- <td><input type="text" name="eduInfo.study_school_name"
- id="eduInfo.study_school_name" class="default-text" /></td>
- <td>专业:</td>
- <td><input type="text" name="eduInfo.study_subject"
- id="eduInfo.study_subject" class="default-text" /></td>
- </tr>
- <tr>
- <td>学历:</td>
- <td>
- <select name="eduInfo.study_educational_background" id="eduInfo.study_educational_background">
- <c:forEach var="list" items="${listEducationalData}">
- <option value="${list.dvalue }">${list.dname }</option>
- </c:forEach>
- </select>
-
- </td>
- <td>学位:</td>
- <td><input type="text" name="eduInfo.study_degree" id="eduInfo.study_degree"
- class="default-text" /></td>
- <td></td>
- <td></td>
- </tr>
- <tr>
-
- <td>开始时间:</td>
- <td><input type="text" name="eduInfo.study_start_date"
- id="eduInfo.study_start_date" class="default-text" /></td>
- <td>结束时间:</td>
- <td><input type="text" name="eduInfo.study_end_date"
- id="eduInfo.study_end_date" class="default-text" />
- </td>
- <td></td>
- <td>
- </td>
- </tr>
- <%-- <tr>
- <td>上传附件:</td>
- <td colspan="5">
- <input type="hidden" id="eduInfo.study_affix" name="eduInfo.study_affix" value=""/>
- <jsp:include page="/include/file.jsp">
- <jsp:param name="fieldName" value="study_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="submitSaveEducation();" />
- </div>
- </div>
- <div position="center" title="" id="main2">
- <div id="maingrid2" style="margin: 0; padding: 0"></div>
- </div>
- </form>
|