mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-25 03:26:34 +08:00
22 lines
557 B
HTML
22 lines
557 B
HTML
|
|
{$layout}
|
||
|
|
{$template "menu"}
|
||
|
|
|
||
|
|
<form class="ui form" data-tea-action="$" data-tea-success="success">
|
||
|
|
<table class="ui table selectable definition">
|
||
|
|
<tr>
|
||
|
|
<td class="title">服务名称</td>
|
||
|
|
<td>
|
||
|
|
<input type="text" name="name" maxlength="60" 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>
|
||
|
|
</table>
|
||
|
|
<submit-btn></submit-btn>
|
||
|
|
</form>
|