2020-09-16 09:09:10 +08:00
|
|
|
|
{$layout}
|
2021-12-02 17:41:51 +08:00
|
|
|
|
{$template "../settings_menu"}
|
|
|
|
|
|
{$template "/left_menu_with_menu"}
|
2020-09-16 09:09:10 +08:00
|
|
|
|
|
2021-12-02 17:41:51 +08:00
|
|
|
|
<div class="right-box with-menu">
|
2020-12-19 19:08:39 +08:00
|
|
|
|
<!-- 审核中 -->
|
|
|
|
|
|
<div v-show="isAuditing">
|
2021-06-30 19:59:59 +08:00
|
|
|
|
<warning-message>当前域名正在审核中,请审核域名的所有人、备案情况等。</warning-message>
|
2020-12-19 19:08:39 +08:00
|
|
|
|
<form method="post" class="ui form" data-tea-action=".audit" data-tea-success="auditSuccess">
|
|
|
|
|
|
<csrf-token></csrf-token>
|
|
|
|
|
|
<input type="hidden" name="serverId" :value="serverId"/>
|
|
|
|
|
|
<table class="ui table definition selectable">
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="title">审核中域名</td>
|
|
|
|
|
|
<td>
|
2021-12-01 17:06:05 +08:00
|
|
|
|
<span v-for="serverName in allServerNames" class="ui label basic" :class="{green: serverName.isPassed}">
|
|
|
|
|
|
{{serverName.name}}
|
2020-12-19 19:08:39 +08:00
|
|
|
|
</span>
|
2021-12-01 17:06:05 +08:00
|
|
|
|
<p class="comment" v-if="hasPassedDomains"><span class="green">绿色</span>标注的域名表示之前已经审核通过的域名。</p>
|
2020-12-19 19:08:39 +08:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
2021-12-01 17:06:05 +08:00
|
|
|
|
<tr v-if="auditingTime.length > 0">
|
|
|
|
|
|
<td>提交审核时间</td>
|
|
|
|
|
|
<td>{{auditingTime}}</td>
|
|
|
|
|
|
</tr>
|
2020-12-19 19:08:39 +08:00
|
|
|
|
<tr>
|
|
|
|
|
|
<td>审核结果</td>
|
|
|
|
|
|
<td>
|
|
|
|
|
|
<radio name="auditingOK" :v-value="1" v-model="auditing">审核通过</radio>
|
|
|
|
|
|
<radio name="auditingOK" :v-value="0" v-model="auditing">审核不通过</radio>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
<tr v-show="auditing == 0">
|
|
|
|
|
|
<td>审核不通过原因 *</td>
|
|
|
|
|
|
<td>
|
|
|
|
|
|
<input type="text" name="auditingReason" maxlength="100" placeholder="包含审核不通过的域名等"/>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
<submit-btn>提交审核结果</submit-btn>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 审核不通过 -->
|
|
|
|
|
|
<div class="ui message error" v-if="!isAuditing && !auditingResult.isOk">
|
|
|
|
|
|
审核不通过,原因:{{auditingResult.reason}} ({{auditingResult.createdTime}})。等待用户重新提交。
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 不在审核中 -->
|
|
|
|
|
|
<div v-show="!isAuditing && auditingResult.isOk">
|
|
|
|
|
|
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
|
|
|
|
|
|
<csrf-token></csrf-token>
|
|
|
|
|
|
<input type="hidden" name="serverId" :value="serverId"/>
|
|
|
|
|
|
<table class="ui table definition selectable">
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="title">已绑定的域名</td>
|
|
|
|
|
|
<td>
|
|
|
|
|
|
<server-name-box :v-server-names="serverNames"></server-name-box>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
<submit-btn></submit-btn>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
2020-09-16 09:09:10 +08:00
|
|
|
|
</div>
|