etms/WEB-INF/view/etms/dict/list.ftl
liyuchen d9fba9a316 Remove organization references (de-identify)
- Replace CETC54 references with ETMS
- Replace com.cetc54 package with com.example
- Rename cetc54 directories to etms
- Replace CECT54.WebUI to ETMS.WebUI
- Replace organization names (中国电科54所 -> XX公司)
- Replace internal system URLs (cetc54.com -> example.com)
2026-04-16 17:14:56 +08:00

45 lines
1.8 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>
</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: 34px;">操作</td>
<td style="width: 28px;">序号</td>
<td sortField="jsd.name">字典名称</td>
<td sortField="jsd.keykey">标识</td>
<td>说明</td>
</tr>
</thead>
<tbody>
<tr class="row{{i%2}}">
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
<td>
<a class="icon icon_rowedit" title="编辑" href="javascript:void(0);"
onclick="editRow('{{value.id}}','{{value.name}}');"></a><a
class="icon icon_rowdelete" title="删除" href="javascript:void(0);"
onclick="deleteRow(['{{value.id}}']);"></a></td>
<td align="center">{{i+1}}</td>
<td><a title="查看" href="javascript:void(0);"
onclick="viewRow('{{value.id}}','{{value.name}}');">{{value.name}}</a></td>
<td>{{value.keykey}}</td>
<td>{{value.note}}</td>
</tr>
</tbody>
</table>
<div class="grid_pagination"></div>
</div>