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

85 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>
<select id="course_id" name="course_id" class="ui_validate"
ui-config="required:true,width:250,panelHeight:350,valueField:'id',textField:'kcmc'" value="{{course_id}}">
</select>
</td>
<th style="width: 100px">
选择班级:
</th>
<td>
<select id="selclass" name="selclass" class="ui_validate"
ui-config="required:true,width:250,panelHeight:350,valueField:'id',textField:'bjmc'" value="{{classid}}">
</select>
</td>
</tr>
<tr>
<th></th>
<td><button id="addReplaceStudent">添加更换学员</button> <button id="deleteReplaceStudent"> 删除更换学员</button></td>
</tr>
<tr id="replacement_method_tr" class="replacement_method_tr">
<th style="width: 100px">
更换方式:
</th>
<td>
<select id="replacement_method_id" name="replacement_method_id" class="ui_validate"
ui-config="required:true,width:250,dictKey:'replacement_method'" value="{{replacement_method_id}}">
</select>
</td>
<#--<th style="width: 100px">-->
<#--&nbsp;-->
<#--</th>-->
<#--<td>-->
<#--&nbsp;-->
<#--</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,valueField:'usercode',textField:'username'" 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,valueField:'usercode',textField:'username'" value="{{original_student_id}}"/>
</td>
</tr>
<tr id="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,valueField:'usercode',textField:'username'" 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,valueField:'usercode',textField:'username'" value="{{new_student_id}}"/>
</td>
</tr>
</table>
</script>