增加认证节点管理

This commit is contained in:
刘祥超
2021-04-13 21:23:13 +08:00
parent 42a306ff22
commit 8ed02c8103
24 changed files with 640 additions and 1 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>