阶段性提交

This commit is contained in:
刘祥超
2020-09-06 16:19:34 +08:00
parent d7e3cefa4d
commit 9093019c73
185 changed files with 5306 additions and 1832 deletions

View File

@@ -0,0 +1,26 @@
{$layout}
{$template "menu"}
<p class="comment" v-if="nodes.length == 0">暂时还没有节点。</p>
<table class="ui table selectable" v-if="nodes.length > 0">
<thead>
<tr>
<th>节点名称</th>
<th>主机地址</th>
<th>端口</th>
<th class="two op">操作</th>
</tr>
</thead>
<tr v-for="node in nodes">
<td>{{node.name}}</td>
<td>{{node.host}}</td>
<td>{{node.port}}</td>
<td>
<a :href="'/api/node/settings?nodeId=' + node.id">设置</a>
</td>
</tr>
</table>
<div class="page" v-html="page"></div>