将全局的通用设置--域名审核设置移到“集群设置--网站设置”中

This commit is contained in:
GoEdgeLab
2023-09-18 16:07:57 +08:00
parent dc535f96b9
commit b62476b899
6 changed files with 40 additions and 73 deletions

View File

@@ -7,7 +7,7 @@
<csrf-token></csrf-token>
<input type="hidden" name="clusterId" :value="clusterId"/>
<h4>域名</h4>
<h4>域名绑定</h4>
<table class="ui table definition selectable">
<tr>
@@ -81,6 +81,26 @@
</tr>
</table>
<div v-show="teaIsPlus">
<h4>域名审核</h4>
<table class="ui table definition selectable">
<tr>
<td class="title">域名变更时需要审核</td>
<td>
<checkbox name="httpAllDomainAuditingIsOn" v-model="config.httpAll.domainAuditingIsOn"></checkbox>
<p class="comment">选中后,用户在创建和修改域名时需要管理员审核通过才能生效。</p>
</td>
</tr>
<tr v-show="config.httpAll.domainAuditingIsOn">
<td>审核提示</td>
<td>
<input name="httpAllDomainAuditingPrompt" type="text" v-model="config.httpAll.domainAuditingPrompt" maxlength="200"/>
<p class="comment">提示用户需要审核的文字说明。</p>
</td>
</tr>
</table>
</div>
<h4>访问日志</h4>
<table class="ui table definition selectable">
<tr>