- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
74 lines
3.0 KiB
Plaintext
74 lines
3.0 KiB
Plaintext
<div id="grid">
|
|
<div class="grid_toolbar" style="height: 63px">
|
|
<table>
|
|
<tr>
|
|
<th>
|
|
课程名称:
|
|
</th>
|
|
<td>
|
|
<input id="kcmc" name="kcmc" class="ui_validate" type="text" style=""
|
|
ui-config=""/>
|
|
</td>
|
|
<th>
|
|
参训人员:
|
|
</th>
|
|
<td>
|
|
<input id="cxry" name="cxry" class="ui_validate" type="text" style=""
|
|
ui-config=""/>
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table>
|
|
<tr>
|
|
<td colspan="6">
|
|
<button type="button" id="btnAdd" ui-config="style:'button_submit'">添加</button>
|
|
<button type="button" id="btnDelete" ui-config="style:'button_danger'">删除</button>
|
|
<button type="button" id="btnSearch" ui-config="icons:{left:'icon_search'},style:'button_submit'">查询</button>
|
|
<button type="button" id="btnReset" ui-config="icons:{left:'icon_cancel'},style:'button_submit'">重置</button>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
<table class="grid_data">
|
|
<thead>
|
|
<tr>
|
|
<td style="width: 20px;"><input class="grid_selector" type="checkbox" id="cbAll"/></td>
|
|
<td style="width: 80px;">操作</td>
|
|
<td style="width: 50px;">序号</td>
|
|
<td style="width: 80px;">课程名称</td>
|
|
<td style="width: 80px;">开始时间</td>
|
|
<td style="width: 80px;">结束时间</td>
|
|
<td style="width: 120px;">培训时间(天)</td>
|
|
<td style="width: 120px;">培训人数</td>
|
|
<td style="width: 80px;">参训地点</td>
|
|
<td style="width: 80px;">负责人</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="row{{i%2}}">
|
|
<td class="tdCenter"><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
|
|
<td class="tdCenter">
|
|
<a class="" title="查看" href="javascript:void(0);"
|
|
onclick="viewRow('{{value.id}}','{{value.kcmc}}');">查看</a>
|
|
<a class="" title="编辑" href="javascript:void(0);"
|
|
onclick="editRow('{{value.id}}','{{value.kcmc}}');">编辑</a>
|
|
</td>
|
|
<td class="tdCenter">{{i+1}}</td>
|
|
<td class="tdCenter">{{value.kcmc}}</td>
|
|
<td class="tdCenter">{{value.starttime | dateFilter}}</td>
|
|
<td class="tdCenter">{{value.endtime | dateFilter}}</td>
|
|
<td class="tdCenter">{{value.traindays}}</td>
|
|
<td class="tdCenter">{{value.coursepersoncount}}</td>
|
|
<td class="tdCenter">{{value.trainplace | placeFilter}}</td>
|
|
<td class="tdCenter">{{value.director}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="grid_pagination"></div>
|
|
</div>
|
|
<div class="ui_dialog" id="dialog"></div> |