前端页面
This commit is contained in:
@@ -13,13 +13,23 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>所属集群 *</td>
|
||||
<td>主集群 *</td>
|
||||
<td>
|
||||
<select class="ui dropdown" name="clusterId" v-model="defaultClusterId">
|
||||
<select class="ui dropdown" name="primaryClusterId" v-model="defaultPrimaryClusterId">
|
||||
<option value="">[请选择集群]</option>
|
||||
<option v-for="cluster in clusters" :value="cluster.id">{{cluster.name}}</option>
|
||||
</select>
|
||||
<p class="comment">应用的解析请求将由所选集群下的网关节点处理。默认值来自“HTTPDNS 用户设置”。</p>
|
||||
<p class="comment">主集群用于优先处理应用解析请求。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>备集群</td>
|
||||
<td>
|
||||
<select class="ui dropdown" name="backupClusterId" v-model="defaultBackupClusterId">
|
||||
<option :value="0">[不设置]</option>
|
||||
<option v-for="cluster in clusters" :value="cluster.id">{{cluster.name}}</option>
|
||||
</select>
|
||||
<p class="comment">当主集群不可用时,可切换到备集群。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user