|
@@ -1147,6 +1147,7 @@
|
|
<th width="11%">注册日期</th>
|
|
<th width="11%">注册日期</th>
|
|
<th width="11%"><span class="require-item">*</span>发证日期</th>
|
|
<th width="11%"><span class="require-item">*</span>发证日期</th>
|
|
<th width="10%">发证机关</th>
|
|
<th width="10%">发证机关</th>
|
|
|
|
+ <th width="10%">专业</th>
|
|
<th width="10%">文件</th>
|
|
<th width="10%">文件</th>
|
|
<th width="10%">操作</th>
|
|
<th width="10%">操作</th>
|
|
</tr>
|
|
</tr>
|
|
@@ -1181,7 +1182,13 @@
|
|
<td>
|
|
<td>
|
|
<input id="certificateList${varStatus.index}_issuingAuthority" name="certificateList[${varStatus.index}].issuingAuthority" class="form-control" value="${certificate.issuingAuthority}"/>
|
|
<input id="certificateList${varStatus.index}_issuingAuthority" name="certificateList[${varStatus.index}].issuingAuthority" class="form-control" value="${certificate.issuingAuthority}"/>
|
|
</td>
|
|
</td>
|
|
-
|
|
|
|
|
|
+ <td>
|
|
|
|
+ <select name="certificateList[${varStatus.index}].major" id="certificateList${varStatus.index}_major" class="form-control required">
|
|
|
|
+ <c:forEach items="${fns:getMainDictList('certificate_major')}" var="var">
|
|
|
|
+ <option value="${var.value}" <c:if test="${certificate.name eq var.value}">selected</c:if>>${var.label}</option>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </select>
|
|
|
|
+ </td>
|
|
<td class="text-center op-td">
|
|
<td class="text-center op-td">
|
|
<a class="op-btn op-btn-add" title="上传" onclick="this_upload_file_button('certificateList${varStatus.index}_file')"><i class="fa fa-plus"></i> 上传</a><span id="certificateList${varStatus.index}_fileName1"><c:if test="${not empty certificate.filePath}"><img src="${certificate.filePath}" width="24" height="24" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${certificate.filePath}','90%','90%')" alt=""></c:if></span>
|
|
<a class="op-btn op-btn-add" title="上传" onclick="this_upload_file_button('certificateList${varStatus.index}_file')"><i class="fa fa-plus"></i> 上传</a><span id="certificateList${varStatus.index}_fileName1"><c:if test="${not empty certificate.filePath}"><img src="${certificate.filePath}" width="24" height="24" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${certificate.filePath}','90%','90%')" alt=""></c:if></span>
|
|
<input id="certificateList${varStatus.index}_file" name="certificateList[${varStatus.index}].file" style="display:none" type="file" onchange="changeFileName(this,1)"/>
|
|
<input id="certificateList${varStatus.index}_file" name="certificateList[${varStatus.index}].file" style="display:none" type="file" onchange="changeFileName(this,1)"/>
|
|
@@ -1223,6 +1230,13 @@
|
|
<td>
|
|
<td>
|
|
<input placeholder="请输入发证机关" id="certificateList{{idx}}_issuingAuthority" name="certificateList[{{idx}}].issuingAuthority" class="form-control" value="{{row.issuingAuthority}}"/>
|
|
<input placeholder="请输入发证机关" id="certificateList{{idx}}_issuingAuthority" name="certificateList[{{idx}}].issuingAuthority" class="form-control" value="{{row.issuingAuthority}}"/>
|
|
</td>
|
|
</td>
|
|
|
|
+ <td>
|
|
|
|
+ <select name="certificateList[{{idx}}].major" id="certificateList{{idx}}_major" class="form-control required">
|
|
|
|
+ <c:forEach items="${fns:getMainDictList('certificate_major')}" var="var">
|
|
|
|
+ <option value="${var.value}" <c:if test="${certificate.name eq var.value}">selected</c:if>>${var.label}</option>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </select>
|
|
|
|
+ </td>
|
|
<td class="text-center op-td">
|
|
<td class="text-center op-td">
|
|
<a class="op-btn op-btn-add" title="上传" onclick="this_upload_file_button('certificateList{{idx}}_file')"><i class="fa fa-plus"></i> 上传</a><span id="certificateList{{idx}}_fileName1"></span>
|
|
<a class="op-btn op-btn-add" title="上传" onclick="this_upload_file_button('certificateList{{idx}}_file')"><i class="fa fa-plus"></i> 上传</a><span id="certificateList{{idx}}_fileName1"></span>
|
|
<input id="certificateList{{idx}}_file" name="certificateList[{{idx}}].file" style="display:none" type="file" onchange="changeFileName(this,1)"/>
|
|
<input id="certificateList{{idx}}_file" name="certificateList[{{idx}}].file" style="display:none" type="file" onchange="changeFileName(this,1)"/>
|