mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
优化界面
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
</div>
|
||||
</form>
|
||||
<div class="ui segment" v-if="latestVisible">
|
||||
常用集群:<span v-for="cluster in latestClusters"><a :href="'/clusters/cluster?clusterId=' + cluster.id">{{cluster.name}}</a> </span>
|
||||
常用集群:<span v-for="(cluster, index) in latestClusters"><a :href="'/clusters/cluster?clusterId=' + cluster.id">{{cluster.name}}</a> <span class="disabled" v-if="index != latestClusters.length - 1">|</span> </span>
|
||||
</div>
|
||||
|
||||
<div class="ui tabular menu" v-if="isSearching">
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
<!-- 常用服务 -->
|
||||
<div class="ui segment" v-if="latestVisible">
|
||||
常用服务:<span v-for="server in latestServers"><a :href="'/servers/server?serverId=' + server.id">{{server.name}}</a> </span>
|
||||
常用服务:<span v-for="(server, index) in latestServers"><a :href="'/servers/server?serverId=' + server.id">{{server.name}}</a> <span class="disabled" v-if="index != latestServers.length - 1">|</span> </span>
|
||||
</div>
|
||||
|
||||
<p class="ui message" v-if="servers.length == 0">暂时还没有服务。</p>
|
||||
|
||||
Reference in New Issue
Block a user