实现基础的IP地址阈值

This commit is contained in:
刘祥超
2021-09-12 20:21:32 +08:00
parent 4d5a4d501a
commit c95dde5187
31 changed files with 788 additions and 267 deletions

View File

@@ -41,8 +41,17 @@
<input type="text" name="name" maxlength="50" v-model="address.name"/>
</td>
</tr>
<tr>
<td>在线状态</td>
<td>
<select class="ui dropdown auto-width" name="isUp" v-model="address.isUp">
<option value="1">在线</option>
<option value="0">离线</option>
</select>
</td>
</tr>
<tr v-if="teaIsPlus && supportThresholds">
<td>上线阈值</td>
<td>阈值设置</td>
<td>
<node-ip-address-thresholds-box :v-thresholds="address.thresholds"></node-ip-address-thresholds-box>
</td>