增加独立的IP地址管理功能

This commit is contained in:
GoEdgeLab
2021-08-31 17:24:30 +08:00
parent 06d7f8d754
commit 31aa942c0f
31 changed files with 822 additions and 50 deletions

View File

@@ -25,12 +25,12 @@
</tr>
<tbody v-show="moreOptionsVisible">
<tr>
<td class="title">备注</td>
<td class="title">名称</td>
<td>
<input type="text" name="name" maxlength="50"/>
</td>
</tr>
<tr v-if="teaIsPlus">
<tr v-if="teaIsPlus && supportThresholds">
<td>上线阈值</td>
<td>
<node-ip-address-thresholds-box></node-ip-address-thresholds-box>

View File

@@ -36,12 +36,12 @@
</td>
</tr>
<tr>
<td class="title">备注</td>
<td class="title">名称</td>
<td>
<input type="text" name="name" maxlength="50" v-model="address.name"/>
</td>
</tr>
<tr v-if="teaIsPlus">
<tr v-if="teaIsPlus && supportThresholds">
<td>上线阈值</td>
<td>
<node-ip-address-thresholds-box :v-thresholds="address.thresholds"></node-ip-address-thresholds-box>