Files
EdgeAdmin/web/views/@default/clusters/index.html

36 lines
1.0 KiB
HTML
Raw Normal View History

2020-09-06 16:19:34 +08:00
{$layout}
{$template "menu"}
<p class="comment" v-if="clusters.length == 0">暂时还没有集群。</p>
<table class="ui table selectable" v-if="clusters.length > 0">
<thead>
<tr>
<th>集群名称</th>
<th>节点数量</th>
2020-09-26 08:07:18 +08:00
<th>在线节点数量</th>
2020-09-06 16:19:34 +08:00
<th>默认认证</th>
<th class="two op">操作</th>
</tr>
</thead>
<tr v-for="cluster in clusters">
<td>{{cluster.name}}</td>
2020-09-26 08:07:18 +08:00
<td>
<a :href="'/clusters/cluster?clusterId=' + cluster.id" v-if="cluster.countAllNodes > 0">{{cluster.countAllNodes}}</a>
<span class="disabled" v-else="">-</span>
</td>
<td>
<a :href="'/clusters/cluster?clusterId=' + cluster.id + '&activeState=1'" v-if="cluster.countActiveNodes > 0"><span class="green">{{cluster.countActiveNodes}}</span></a>
<span class="disabled" v-else>-</span>
</td>
2020-09-06 16:19:34 +08:00
<td>
<span v-if="cluster.hasGrant" class="green">Y</span>
<span v-else class="disabled">N</span>
</td>
<td>
<a :href="'/clusters/cluster?clusterId=' + cluster.id">详情</a>
</td>
</tr>
</table>
<page-box></page-box>