Files
EdgeAdmin/web/views/@default/servers/components/groups/updatePopup.html
2020-11-10 12:47:24 +08:00

15 lines
439 B
HTML

{$layout "layout_popup"}
<h3>修改分组</h3>
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
<input type="hidden" name="groupId" :value="group.id"/>
<table class="ui table definition selectable">
<tr>
<td class="title">分组名称 *</td>
<td>
<input type="text" name="name" maxlength="50" ref="focus" v-model="group.name"/>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>