fuc/resources/views/tabler/gembox/node/live 3.tpl
2025-02-23 13:30:57 +08:00

74 lines
2.2 KiB
Smarty
Executable File

{include file='gembox/layout/head.tpl'}
<style>
.row1 {
}
.listTable {
//margin:0px;
display: inline-block;
}
</style>
<div class="row1">
<table class="listTable" >
<thead>
<tr>
<th>节点id</th>
<th>节点名称</th>
<th>启用</th>
<th>节点地址</th>
<th>自定义配置</th>
<th>节点类型</th>
<th>倍率</th>
<th>动倍启用</th>
<th>动倍计算</th>
<th>动倍配置</th>
<th>等级</th>
<th>限速</th>
<th>流量</th>
<th>流量限制</th>
<th>流量重置日</th>
<th>心跳</th>
<th>在线用户</th>
<th>ipv4</th>
<th>ipv6</th>
<th>组</th>
<th>在线</th>
<th>gfw封锁</th>
</tr>
</thead>
<tbody>
{foreach $data['data'] as $k=>$row}
<tr>
<td>{$row['id']}</td>
<td>{$row['name']}</td>
<td>{$row['type']}</td>
<td>{$row['server']}</td>
<td>{$row['custom_config']}</td>
<td>{$row['sort']}</td>
<td>{$row['traffic_rate']}</td>
<td>{$row['is_dynamic_rate']}</td>
<td>{$row['dynamic_rate_type']}</td>
<td>{$row['dynamic_rate_config']}</td>
<td>{$row['node_class']}</td>
<td>{$row['node_speedlimit']}</td>
<td>{$row['node_bandwidth']}</td>
<td>{$row['node_bandwidth_limit']}</td>
<td>{$row['bandwidthlimit_resetday']}</td>
<td>{$row['node_heartbeat']}</td>
<td>{$row['online_user']}</td>
<td>{$row['ipv4']}</td>
<td>{$row['ipv6']}</td>
<td>{$row['node_group']}</td>
<td>{$row['online']}</td>
<td>{$row['gfw_block']}</td>
</tr>
{/foreach}
</tbody>
</table>
</div>