mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-25 03:26:34 +08:00
22 lines
553 B
HTML
22 lines
553 B
HTML
{$layout "layout_popup"}
|
|
|
|
<h3>修改IP地址</h3>
|
|
|
|
<form class="ui form" data-tea-action="$" data-tea-success="success">
|
|
<input type="hidden" name="addressId" :value="address.id"/>
|
|
<table class="ui table definition selectable">
|
|
<tr>
|
|
<td>IP地址 *</td>
|
|
<td>
|
|
<input type="text" name="ip" maxlength="128" ref="focus" v-model="address.ip"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="title">备注</td>
|
|
<td>
|
|
<input type="text" name="name" maxlength="50" v-model="address.name"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<submit-btn></submit-btn>
|
|
</form> |