Files
EdgeAdmin/web/views/@default/clusters/cluster/createBatch.html
2020-12-23 19:44:10 +08:00

34 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{$layout}
{$template "/clusters/cluster/menu"}
{$template "/left_menu"}
<div class="right-box">
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
<csrf-token></csrf-token>
<input type="hidden" name="clusterId" :value="clusterId"/>
<table class="ui table definition selectable">
<tr>
<td class="title">节点IP列表</td>
<td>
<textarea name="ipList" rows="20" placeholder="IP列表每行一个IP" ref="ipList"></textarea>
<p class="comment">每行一个节点IP。</p>
</td>
</tr>
<tr>
<td>所属区域</td>
<td>
<node-region-selector></node-region-selector>
<p class="comment">设置区域后才能根据区域进行流量统计和计费。</p>
</td>
</tr>
<tr>
<td>所属分组</td>
<td>
<node-group-selector :v-cluster-id="clusterId"></node-group-selector>
<p class="comment">仅用来筛选服务。</p>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>
</div>