- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
62 lines
2.6 KiB
Plaintext
62 lines
2.6 KiB
Plaintext
<div id="grid">
|
|
<div class="grid_toolbar">
|
|
<table style="width:100%;">
|
|
<tr>
|
|
<td style="width:100%;">
|
|
<#--<#if pg=="1">-->
|
|
<button type="button" id="btn1" ui-config="style:'button_submit'">添加
|
|
</button>
|
|
<button type="button" id="btn2" ui-config="style:'button_danger'">删除
|
|
</button>
|
|
<button type="button" id="btn3" ui-config="style:'button_submit'">批量导入试题
|
|
</button>
|
|
<#--</#if>-->
|
|
</td>
|
|
<td>
|
|
|
|
<#--<input type="hidden" id="pg" value="${pg}"/>-->
|
|
<input id="searchbox" type="text">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<table class="grid_data">
|
|
<thead>
|
|
<tr>
|
|
<td style="width: 20px;"><input class="grid_selector" type="checkbox" id="cbAll"/></td>
|
|
<#--<#if pg=="1">-->
|
|
<td style="width: 44px;">操作</td>
|
|
<#--</#if>-->
|
|
<td style="width: 28px;">序号</td>
|
|
<td sortfield="question_type">题目类型</td>
|
|
<#-- 属性style="width: auto" 实现表格中各td平均分布,但是不能自由拖动-->
|
|
<td sortfield="subject" style="width: 200px">题目</td>
|
|
<td sortfield="category">试卷类别</td>
|
|
<td sortfield="edittime">编辑时间</td>
|
|
<td sortfield="creatperson">创建人</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="row{{i%2}}">
|
|
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
|
|
<#--<#if pg=="1">-->
|
|
<td class="tableCenterTd">
|
|
|
|
<a class="icon icon_rowedit" title="编辑" href="javascript:void(0);"
|
|
onclick="editRow('{{value.id}}');"></a>
|
|
<a class="icon icon_rowdelete" title="删除" href="javascript:void(0);"
|
|
onclick="deleteRow('{{value.id}}');"></a>
|
|
</td>
|
|
<#--</#if>-->
|
|
<td>{{i+1}}</td>
|
|
<td>{{value.question_type}}</td>
|
|
<td><a title="{{value.subject}}" href="javascript:void(0);"
|
|
onclick="viewRow('{{value.id}}','{{value.type}}');">{{value.subject}}</a></td>
|
|
<td>{{value.category}}</td>
|
|
<td>{{value.edittime |dateTimeFilter}}</td>
|
|
<td>{{value.creatperson}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="grid_pagination"></div> <#-- 分页-->
|
|
</div> |