mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-09 15:40:27 +08:00
实现健康检查配置、立即执行健康检查
This commit is contained in:
@@ -10,6 +10,16 @@
|
||||
<input type="text" name="ip" maxlength="128" ref="focus"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>是否可以访问</td>
|
||||
<td>
|
||||
<div class="ui checkbox">
|
||||
<input type="checkbox" name="canAccess" value="1" checked="checked"/>
|
||||
<label></label>
|
||||
</div>
|
||||
<p class="comment">是否为可以公开访问的IP。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="title">备注</td>
|
||||
<td>
|
||||
|
||||
@@ -11,6 +11,16 @@
|
||||
<input type="text" name="ip" maxlength="128" ref="focus" v-model="address.ip"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>是否可以访问</td>
|
||||
<td>
|
||||
<div class="ui checkbox">
|
||||
<input type="checkbox" name="canAccess" value="1" v-model="address.canAccess"/>
|
||||
<label></label>
|
||||
</div>
|
||||
<p class="comment">是否为可以公开访问的IP。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="title">备注</td>
|
||||
<td>
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
Tea.context(function (){
|
||||
Tea.context(function () {
|
||||
this.success = NotifyPopup;
|
||||
|
||||
this.address = window.parent.UPDATING_NODE_IP_ADDRESS
|
||||
});
|
||||
Reference in New Issue
Block a user