46 lines
2.2 KiB
Plaintext
46 lines
2.2 KiB
Plaintext
|
|
<div class="ui_dialog" id="dialog">
|
||
|
|
<form id="grid_form" method="post">
|
||
|
|
</form>
|
||
|
|
<#include "pd_superiorunittrain_student_list.ftl">
|
||
|
|
</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>课程名称:</th>
|
||
|
|
<td><input id="course_name" type="text" name="course_name" class="ui_validate"
|
||
|
|
ui-config="required:true,width:600,tipAfterInput:true,validType:'length[1,255]'" value="{{course_name}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>培训起止时间:</th>
|
||
|
|
<td>
|
||
|
|
|
||
|
|
<input id="start_time" type="text" name="start_time" class="ui_validate"
|
||
|
|
ui-config="required:true,tipAfterInput:true" value="{{start_time | dateFilter}}">-
|
||
|
|
|
||
|
|
<input id="end_time" type="text" name="end_time" class="ui_validate"
|
||
|
|
ui-config="required:true,tipAfterInput:true" value="{{end_time | dateFilter}}">
|
||
|
|
</td>
|
||
|
|
<th>培训时间(天):</th>
|
||
|
|
<td><input id="train_time" type="text" name="train_time" class="ui_validate" readonly="readonly"
|
||
|
|
ui-config="required:true,width:300" value="{{train_time}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>参训地点:</th>
|
||
|
|
<td><input id="train_place" type="text" name="train_place" class="ui_validate"
|
||
|
|
ui-config="required:true,width:300,dictKey:'exam_question_cate'" value="{{train_place}}"/></td>
|
||
|
|
<th>负责人:</th>
|
||
|
|
<td><input id="duty_person" type="text" name="duty_person" class="ui_validate"
|
||
|
|
ui-config="required:true,width:300,valueField:'usercode',textField:'username'" value="{{duty_person}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>备注:</th>
|
||
|
|
<td><input id="remark" type="text" name="remark" class="ui_validate"
|
||
|
|
ui-config="width:600,tipAfterInput:true,validType:'length[1,255]'" value="{{remark}}"/></td>
|
||
|
|
</tr>
|
||
|
|
|
||
|
|
</table>
|
||
|
|
</script>
|