- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
61 lines
2.7 KiB
Plaintext
61 lines
2.7 KiB
Plaintext
<div id="comgrid">
|
|
<div class="formTitle"><span class="icon icon_menu"></span>参训人员</div>
|
|
<div class="grid_toolbar" id="comtoolbar">
|
|
<table style="width:100%;">
|
|
<tr>
|
|
<td style="width:100%;">
|
|
<button type="button" id="btn1" ui-config="style:'button_submit'">添加
|
|
</button>
|
|
<button type="button" id="btn2" ui-config="style:'button_danger'">删除
|
|
</button>
|
|
姓名:
|
|
<input id="searchhname" name="name" class="ui_validate" type="text" style=""
|
|
ui-config=""/>
|
|
<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>
|
|
<#if has_edit>
|
|
<td style="width: 44px;">操作</td>
|
|
</#if>
|
|
<td style="width: 28px;">序号</td>
|
|
<td style="width: 54px;" sortfield="name">姓名</td>
|
|
<td style="width: 64px;">工资号</td>
|
|
<td >部门名称</td>
|
|
<td style="width: 44px;">职级</td>
|
|
<td>职务</td>
|
|
<td style="width: 94px;">联系电话</td>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="row{{i%2}}">
|
|
<td class="tdCenter"><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
|
|
<#if has_edit>
|
|
<td class="tdCenter">
|
|
<a class="icon icon_rowedit" title="编辑" href="javascript:void(0);"
|
|
onclick="comeditRow('{{value.id}}');"></a>
|
|
</td>
|
|
</#if>
|
|
<td class="tdCenter">{{i+1}}</td>
|
|
<td class="tdCenter"><a title="查看" href="javascript:void(0);"
|
|
onclick="comviewRow('{{value.ID}}','{{value.name}}');">{{value.name}}</a>
|
|
</td>
|
|
<td class="tdCenter">{{value.code}}</td>
|
|
<td class="tdCenter">{{value.deptname}}</td>
|
|
<td class="tdCenter">{{value.title | titleFilter}}</td>
|
|
<td class="tdCenter">{{value.duty}}</td>
|
|
<td class="tdCenter">{{value.phonenumber}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="grid_pagination"></div>
|
|
</div> |