- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
70 lines
2.7 KiB
Plaintext
70 lines
2.7 KiB
Plaintext
<div>
|
|
<form id="uptrain_grid_form" method="post">
|
|
</form>
|
|
</div>
|
|
<script id="uptrain_grid_form_temp" type="text/html">
|
|
<input type="hidden" id="hdID" name="uptrain.id" value="{{id}}"/>
|
|
<div class="formTitle"><span class="icon icon_menu"></span>上级培训信息</div>
|
|
<table class="fromTable">
|
|
<tr>
|
|
<th>课程名称:
|
|
</th>
|
|
<td>
|
|
<input id="kcmc" name="uptrain.kcmc" class="ui_validate" type="text"
|
|
ui-config="required:true,validType:'length[1,255]',width:250" value="{{kcmc}}"/>
|
|
</td>
|
|
<th>参训地点:
|
|
</th>
|
|
<td>
|
|
<input id="trainplace" name="uptrain.trainplace" class="ui_validate" type="text"
|
|
ui-config="required:true,validType:'length[1,255]',width:250" value="{{trainplace}}"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>开始时间:
|
|
</th>
|
|
<td>
|
|
<input id="starttime" name="starttime" class="ui_validate" type="text"
|
|
ui-config="required:true,validType:'length[1,255]',width:270" value="{{starttime | dateFilter}}"/>
|
|
</td>
|
|
|
|
<th>结束时间:
|
|
</th>
|
|
<td>
|
|
<input id="endtime" name="endtime" class="ui_validate" type="text"
|
|
ui-config="required:true,validType:'length[1,255]',width:270" value="{{endtime | dateFilter}}"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>培训时间(天):
|
|
</th>
|
|
<td>
|
|
<input id="traindays" name="uptrain.traindays" class="ui_validate" type="text"
|
|
ui-config="width:250,validType:'positiveInteger'" value="{{traindays}}"/>
|
|
</td>
|
|
<th>负责人:
|
|
</th>
|
|
<td>
|
|
<input id="director" name="uptrain.director" class="ui_validate" type="text"
|
|
ui-config="required:true,validType:'length[1,255]',width:250" value="{{director}}"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>主办单位:
|
|
</th>
|
|
<td>
|
|
<input id="organizer" name="uptrain.organizer" class="ui_validate" type="text"
|
|
ui-config="required:false,validType:'length[1,255]',width:250" value="{{organizer}}"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>备注:
|
|
</th>
|
|
<td colspan="4">
|
|
<textarea id="remark" name="uptrain.remark" class="ui_validate" type="text"
|
|
ui-config="required:false,validType:'length[1,255]',width:590,tipAfterInput:true">{{remark}}</textarea>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</script> |