阶段性提交

This commit is contained in:
刘祥超
2020-07-22 22:19:39 +08:00
parent 795c30b95e
commit e111522366
143 changed files with 22667 additions and 37 deletions

View File

@@ -0,0 +1,4 @@
<first-menu>
<menu-item href="/nodes" code="index">节点列表</menu-item>
<menu-item href="/nodes/create" code="create">创建节点</menu-item>
</first-menu>

View File

@@ -0,0 +1,28 @@
{$layout}
{$template "menu"}
<form class="ui form" data-tea-action="$" data-tea-success="success">
<table class="ui table definition selectable">
<tr>
<td class="title">节点名称 *</td>
<td>
<input type="text" name="name" maxlength="50" ref="focus"/>
</td>
</tr>
<tr>
<td>所属集群</td>
<td>
<select class="ui dropdown" name="clusterId" style="width:10em">
<option v-for="cluster in clusters" :value="cluster.id">{{cluster.name}}</option>
</select>
</td>
</tr>
<tr>
<td>SSH登录授权</td>
<td>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>

View File

@@ -0,0 +1,6 @@
{$layout}
{$template "menu"}
<table class="ui table selectable">
</table>