etms/WEB-INF/view/cetc54/train/plantodo/pd_mycertificate_edit.ftl
liyuchen c24bea2687 Initial commit: JCDP 教育培训管理系统 v54
- 系统管理模块(用户/角色/组织/权限/日志)
- 教育培训计划管理模块
- 教育培训实施模块
- 考试管理模块
- 调研问卷管理模块
- 外派培训管理模块
- 年度培训总结模块
- 学习资源管理模块
- 任职资格管理模块
- 即时通讯模块
- APP 版本管理
- 统计分析模块(FineReport)
- 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md)
- 项目开发指南(PROJECT_GUIDE.md)
2026-04-16 16:41:34 +08:00

53 lines
2.4 KiB
Plaintext

<script id="grid_form_temp" type="text/html">
<input type="hidden" id="hdID" name="pdCertificateInfo.id" value="{{id}}"/>
<div class="formTitle"><span class="icon icon_menu"></span>证书信息</div>
<table class="fromTable">
<tr>
<th>培训内容:</th>
<td><input id="coursename" name="pdCertificateInfo.coursename" class="ui_validate" type="text"
ui-config="required:true,width:250" value="{{coursename}}"/>
</td>
<th>学习时间:</th>
<td>
<input id="learntime" name="pdCertificateInfo.learntime" class="ui_validate" type="text"
ui-config="required:true,width:250" value="{{learntime}}"/>
</td>
</tr>
<tr>
<th>颁证机构:</th>
<td>
<input id="awarddept" name="pdCertificateInfo.awarddept" class="ui_validate" type="text"
ui-config="required:true,width:250" value="{{awarddept}}"/>
</td>
<th>颁证时间:</th>
<td>
<input id="awardtime" name="awardtime" class="ui_validate" type="text"
ui-config="required:true,width:250" value="{{awardtime | dateFilter}}"/>
</td>
</tr>
<tr>
<th>证书编号:</th>
<td>
<input id="code" name="pdCertificateInfo.code" class="ui_validate" type="text"
ui-config="required:true,width:250" value="{{code}}"/>
</td>
</tr>
<tr id="uploadAcc">
<th>上传证书附件:</th>
<td colspan="3"><input type="file" id="txtaccFile" name="accFile" class="ui_validate"
ui-config="width:250,missingMessage: '请选择文件!'"/><input id="hidFile" type="hidden"/></td>
</tr>
<tr id="accList">
<th>证书附件:</th>
<td colspan="2">
<#-- <a title="证书下载" href="${webRoot}/{{fileurl}}">{{filename}}</a>-->
<a title="证书下载" href="${webRoot}/train/plantodo/pdMyCertificate/getCertificateFile?id={{id}}&isTransOrgin=1">{{filename}}</a>
<button type="button" id="btnReupload"
ui-config="'">修改证书附件</button>
</td>
</tr>
</table>
</script>
<form id="grid_form" method="post" enctype="multipart/form-data">
</form>