mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-25 03:26:34 +08:00
单个节点支持多个DNS线路
This commit is contained in:
@@ -3,28 +3,28 @@
|
||||
|
||||
<div class="ui message" v-if="grants.length == 0">暂时还没有认证信息。</div>
|
||||
|
||||
<table class="ui table selectable" v-if="grants.length > 0">
|
||||
<table class="ui table selectable celled" v-if="grants.length > 0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th class="center">ID</th>
|
||||
<th>名称</th>
|
||||
<th>类型</th>
|
||||
<th>集群数</th>
|
||||
<th>节点数</th>
|
||||
<th class="center">集群数</th>
|
||||
<th class="center">节点数</th>
|
||||
<th class="two op">操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr v-for="grant in grants">
|
||||
<td>{{grant.id}}</td>
|
||||
<td class="center">{{grant.id}}</td>
|
||||
<td>{{grant.name}}</td>
|
||||
<td>
|
||||
<span class="ui label tiny">{{grant.method.name}}</span>
|
||||
</td>
|
||||
<td>
|
||||
<td class="center">
|
||||
<span v-if="grant.countClusters > 0">{{grant.countClusters}}</span>
|
||||
<span v-else class="disabled">0</span>
|
||||
</td>
|
||||
<td>
|
||||
<td class="center">
|
||||
<span v-if="grant.countNodes > 0">{{grant.countNodes}}</span>
|
||||
<span v-else class="disabled">0</span>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user