实现监控节点管理

This commit is contained in:
刘祥超
2021-04-06 16:32:23 +08:00
parent f85b3a40ea
commit dbfbdddb3a
22 changed files with 617 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{$layout}
{$template "menu"}
<table class="ui table selectable definition">
<tr>
<td class="title">节点名称</td>
<td>
{{node.name}}
</td>
</tr>
<tr>
<td>状态</td>
<td>
<label-on :v-is-on="node.isOn"></label-on>
</td>
</tr>
<tr>
<td>描述</td>
<td>
<span v-if="node.description.length > 0">{{node.description}}</span>
<span v-else class="disabled">暂时还没有描述。</span>
</td>
</tr>
</table>