- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
96 lines
4.6 KiB
Plaintext
96 lines
4.6 KiB
Plaintext
<script id="grid_form_temp" type="text/html">
|
||
<input type="hidden" id="hdID" value="{{id}}"/>
|
||
<div class="formTitle"><span class="icon icon_menu"></span>证书模板信息</div>
|
||
<table class="fromTable">
|
||
<tr>
|
||
<th>选择答卷:</th>
|
||
<td>
|
||
<#--<input name="examarea" id="radio1" type="radio" ui-config="required:true" value="1" checked="checked" onclick="examareaChange()"/><label for="radio1">全院</label>-->
|
||
<#--<input name="examarea" id="radio2" type="radio" ui-config="required:true" value="2" onclick="examareaChange()"/><label for="radio2">指定部门</label>-->
|
||
<#--<input name="examarea" id="radio3" type="radio" ui-config="required:true" value="3" onclick="examareaChange()"/><label for="radio3">指定人员</label>-->
|
||
<#--<input name="examarea" id="radio4" type="radio" ui-config="required:true" value="4" onclick="examareaChange()"/><label for="radio4">指定班级</label>-->
|
||
<#--<input name="examarea" id="radio5" type="radio" ui-config="required:true" value="5" onclick="examareaChange()"/><label for="radio5">指定课程</label>-->
|
||
<input id="exampaper" name="exampaper" type="text"
|
||
ui-config="panelHeight:200,valueField:'exam_id',textField:'name',multiple:true"/>
|
||
<#-- 属性multiple:true,下拉框多选-->
|
||
</td>
|
||
<#--<th id="examareaTh">好</th>-->
|
||
<#--<td id="examareaTd">-->
|
||
<#--<input id="examareaDdl" name="examareaDdl" type="text"-->
|
||
<#--ui-config="panelHeight:200,valueField:'user_id',textField:'user'"/>-->
|
||
<#--</td>-->
|
||
</tr>
|
||
<tr>
|
||
<th style="width: 100px">
|
||
选择课程:
|
||
</th>
|
||
<td>
|
||
<select id="course_id" name="course_id" class="ui_validate"
|
||
ui-config="width:250,panelHeight:350,valueField:'courseid',textField:'coursename'" value="{{course_id}}">
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th style="width: 100px">
|
||
选择班级:
|
||
</th>
|
||
<td>
|
||
<select id="selclass" name="selclass" class="ui_validate"
|
||
ui-config="width:250,panelHeight:350,valueField:'id',textField:'bjmc'" value="{{classid}}">
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr style="border-bottom: 1px solid #BBB">
|
||
<th>筛选指定分数以上学员:</th>
|
||
<td><input id="scoreabove" name="scoreabove" class="ui_validate" type="text"
|
||
ui-config="width:250"/>
|
||
</td>
|
||
<td>
|
||
<button type="button" id="btnSearch" class="button button_submit"><i class="fa fa-search"></i>查询</button>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>培训科目:</th>
|
||
<td><input id="coursename" name="coursename" class="ui_validate" type="text"
|
||
ui-config="required:true,width:250" value="{{coursename}}"/>
|
||
</td>
|
||
<th>学习时间:</th>
|
||
<td>
|
||
<input id="learntime" name="learntime" class="ui_validate" type="text"
|
||
ui-config="required:true,width:250" value="{{learntime}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>颁证机构:</th>
|
||
<td>
|
||
<input id="awarddept" name="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}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>证书编号前缀:</th>
|
||
<td>
|
||
<input id="codeprefix" name="codeprefix" class="ui_validate" type="text"
|
||
ui-config="required:true,width:250" value="{{codeprefix}}"/>
|
||
</td>
|
||
<th >下载:</th>
|
||
<td>
|
||
<a title="证书模板信息填写示例" href="${asset_path}/_temp/certificateexample.docx">证书模板信息填写示例</a>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
|
||
<div class="formTitle"><span class="icon icon_menu"></span>学员信息</div>
|
||
|
||
<div id="div_stuList" style="width: 100%;height: 300px;bottom:0px;"></div>
|
||
|
||
</script>
|
||
|
||
<form id="grid_form" method="post">
|
||
</form>
|
||
<#include "pd_certificate_main_stu.ftl"> |