etms/WEB-INF/view/cetc54/train/plantodo/pd_checkreplacestu_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

94 lines
3.3 KiB
Plaintext

<div class="ui_dialog" id="dialog">
<form id="grid_form" method="post" style="height: 230px">
</form>
</div>
<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 style="width: 100px">
课程名称:
</th>
<td>
<input id="course" name="course" class="ui_validate" type="text"
ui-config="width:250" value="{{course}}"/>
</td>
<th style="width: 100px">
班级名称:
</th>
<td>
<input id="classname" name="classname" class="ui_validate" type="text"
ui-config="width:250" value="{{classname}}"/>
</td>
</tr>
<tr>
<th style="width: 100px">
申请人:
</th>
<td>
<input id="createperson" name="createperson" class="ui_validate" type="text"
ui-config="width:250" value="{{createperson}}"/>
</td>
</tr>
<tr id="replacement_method_tr" class="replacement_method_tr">
<th style="width: 100px">
更换方式:
</th>
<td>
<input id="replacement_method" name="replacement_method" class="ui_validate" type="text"
ui-config="width:250" value="{{replacement_method}}"/>
</td>
</tr>
<tr id="original_student_tr">
<th style="width: 100px">
原学员姓名:
</th>
<td>
<input id="original_student" name="original_student" class="ui_validate" type="text"
ui-config="width:250" value="{{original_student}}"/>
</td>
<th style="width: 100px">
原学员工资号:
</th>
<td>
<input id="original_student_id" name="original_student_id" class="ui_validate" type="text"
ui-config="width:250" value="{{original_student_id}}"/>
</td>
</tr>
<tr id="new_student_tr" class="new_student_tr">
<th style="width: 100px">
新学员姓名:
</th>
<td>
<input id="new_student" name="new_student" class="ui_validate" type="text"
ui-config="width:250" value="{{new_student}}"/>
</td>
<th style="width: 100px">
新学员工资号:
</th>
<td>
<input id="new_student_id" name="new_student_id" class="ui_validate" type="text"
ui-config="width:250" value="{{new_student_id}}"/>
</td>
</tr>
<tr>
<th>
</th>
<td>
</td>
</tr>
<tr>
<th style="width: 100px">
审批意见:
</th>
<td colspan="3">
<input id="opinion" name="opinion" class="ui_validate" type="text"
ui-config="width:615" value="{{opinion}}"/>
</td>
</tr>
</table>
</script>