前端页面

This commit is contained in:
robin
2026-02-24 19:10:27 +08:00
parent 60dc87e0f2
commit 2eb32b9f1f
59 changed files with 1537 additions and 890 deletions

View File

@@ -72,13 +72,6 @@
<p class="comment httpdns-policy-note">用户新建应用时默认落到此集群。</p>
</td>
</tr>
<tr>
<td class="title">启用用户域名校验</td>
<td>
<checkbox name="enableUserDomainVerify" value="1" v-model="policies.enableUserDomainVerify"></checkbox>
<p class="comment httpdns-policy-note">开启后,用户添加域名需要通过归属校验。</p>
</td>
</tr>
</table>
<table class="ui table definition selectable" v-show="activeSection == 'basic'">

View File

@@ -10,9 +10,6 @@ Tea.context(function () {
this.policies.defaultClusterId = this.availableClusters[0].id;
}
}
if (typeof this.policies.enableUserDomainVerify == "undefined") {
this.policies.enableUserDomainVerify = true;
}
if (typeof this.policies.defaultTTL == "undefined" || this.policies.defaultTTL <= 0) {
this.policies.defaultTTL = 30;
}