mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-11 18:30:25 +08:00
24 lines
443 B
HTML
24 lines
443 B
HTML
|
|
{$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>
|