| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <form name="constructionForm" action="" method='post'>
- <div class="forum-container temp-form" >
- <input type="hidden" id="constructionId" name="constructionId" value="">
- <input type="hidden" id="count" name="count">
- <input type="hidden" id="temp" name="temp">
- <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="construction_engineer_type_id" id="construction_engineer_type_id" value="${listPos.universalid }">${listPos.small_type_name }
- </c:if>
- </c:forEach>
- <input type="hidden" id="constructionCheck" name="constructionCheck" value="">
- </td>
- </tr>
- <tr>
- <td>注册号:</td>
- <td><input type="text" name="registration_number"
- id="registration_number" class="default-text" /></td>
- <td>注册证书编号<font color="red">*</font>:</td>
- <td><input type="text" name="registration_certificate_id" id="registration_certificate_id"
- class="default-text" /></td>
- <td>执业资格证书编号:</td>
- <td><input type="text" name="operation_certificate"
- id="operation_certificate" class="default-text" /></td>
- </tr>
- <tr>
- <td>继续教育专业:</td>
- <td><input type="text" name="continuing_education_subject"
- id="continuing_education_subject" class="default-text" /></td>
- <td>个人版系统密码:</td>
- <td><input type="text" name="person_system_passowrd"
- id="person_system_passowrd" class="default-text" /></td>
- <td>继续教育日期:</td>
- <td><input type="text" name="continuing_education_time"
- id="continuing_education_time" /></td>
- </tr>
- <tr>
- <td>发证时间<font color="red">*</font>:</td>
- <td><input type="text" name="send_card_time"
- id="send_card_time" /></td>
- <td>企业锁系统:</td>
- <td><input type="text" name="lock_system"
- id="lock_system" class="default-text" /></td>
- <td>借用信息:</td>
- <td><input type="text" name="construction_engineer_remark"
- id="construction_engineer_remark" class="default-text" /></td>
- </tr>
- <tr>
- <td colspan="4">
- <table id="tab" style="width:100%">
- <tr>
- <td style="width: 85px;">专业:</td>
- <td >
- <input type="text" name="construction_subject0"
- id="construction_subject0"/>
- <a href="#" onclick="addSubject()"><img src="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/ynet/images/index/jia.png"></a>
- <font id="moreSubject"></font>
- </td>
- <td >有效期至<font color="red">*</font>:</td>
- <td >
- <input type="text" name="construction_effective_date0" id="construction_effective_date0"/>
- <font id="moreDate"></font>
- </td>
- </tr>
- </table>
- </td>
- <td>附件:</td>
- <td >
- <jsp:include page="/include/file.jsp">
- <jsp:param name="fieldName" value="construction_engineer_affix" />
- <jsp:param name="folder" value="yongfu/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="submitSaveConstruction();" />
- </div>
- </div>
- <div position="center" title="">
- <div id="maingrid6" style="margin: 0; padding: 0"></div>
- </div>
- </form>
|