59 lines
2.2 KiB
Plaintext
59 lines
2.2 KiB
Plaintext
|
|
<div id="grid">
|
||
|
|
<div class="grid_toolbar">
|
||
|
|
<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>
|
||
|
|
<#-- <button type="button" id="btn3" ui-config="style:'button_submit'">导入-->
|
||
|
|
<#-- </button>-->
|
||
|
|
|
||
|
|
<#-- <button type="button" id="btn4" ui-config="style:'button_submit'">导出-->
|
||
|
|
<#-- </button>-->
|
||
|
|
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<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>
|
||
|
|
<td style="width: 44px;">操作</td>
|
||
|
|
<td style="width: 28px;">序号</td>
|
||
|
|
<td sortfield="zlname">战略名称</td>
|
||
|
|
<td sortfield="zsname">战术培训名称</td>
|
||
|
|
<td sortfield="content">内容</td>
|
||
|
|
<td sortfield="remark">备注</td>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<tr class="row{{i%2}}">
|
||
|
|
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
|
||
|
|
<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>
|
||
|
|
<td>{{i+1}}</td>
|
||
|
|
<td><a title="查看" href="javascript:void(0);"
|
||
|
|
onclick="viewRow('{{value.id}}','{{value.zlname}}');">{{value.zlname}}</a></td>
|
||
|
|
<td>{{value.zsname}}</td>
|
||
|
|
<td>{{value.content}}</td>
|
||
|
|
<td>{{value.remark}}</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
<div class="grid_pagination"></div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|