85 lines
3.3 KiB
Plaintext
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">-->
|
||
|
|
<#-- -->
|
||
|
|
<#--</th>-->
|
||
|
|
<#--<td>-->
|
||
|
|
<#-- -->
|
||
|
|
<#--</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>
|