mirror of https://github.com/certd/certd
chore:
parent
1d48dcc004
commit
722557fd14
|
@ -101,7 +101,7 @@ export class CertApplyPlugin extends CertApplyBasePlugin {
|
||||||
name: "domains-verify-plan-editor",
|
name: "domains-verify-plan-editor",
|
||||||
},
|
},
|
||||||
required: true,
|
required: true,
|
||||||
helper: "如果选择CNAME方式,请按照上面的显示,给域名添加CNAME记录",
|
helper: "如果选择CNAME方式,请按照上面的显示,给域名添加CNAME记录,添加后,点击验证,验证成功后不要删除记录,申请和续期证书会一直用它",
|
||||||
col: {
|
col: {
|
||||||
span: 24,
|
span: 24,
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td class="center">
|
<td class="center">
|
||||||
<a-button v-if="cnameRecord.status !== 'valid'" type="primary" size="small" :loading="loading" @click="doVerify">点击验证</a-button>
|
<a-button v-if="cnameRecord.status !== 'valid'" type="primary" size="small" :loading="loading" @click="doVerify">点击验证</a-button>
|
||||||
|
<div v-else class="helper">不要删除CNAME</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 160px">主机记录</td>
|
<td style="width: 160px">主机记录</td>
|
||||||
<td style="width: 250px">请设置CNAME记录(设置以后不要删除)</td>
|
<td style="width: 250px">请设置CNAME记录(验证成功以后不要删除)</td>
|
||||||
<td style="width: 120px" class="center">状态</td>
|
<td style="width: 120px" class="center">状态</td>
|
||||||
<td style="width: 80px" class="center">验证</td>
|
<td style="width: 80px" class="center">操作</td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<template v-for="key in domains" :key="key">
|
<template v-for="key in domains" :key="key">
|
||||||
|
|
|
@ -230,8 +230,10 @@ watch(
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: rgba(74, 74, 74, 0.78);
|
background-color: rgba(74, 74, 74, 0.78);
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
padding: 100px;
|
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
.plan-wrapper {
|
.plan-wrapper {
|
||||||
width: 1400px;
|
width: 1400px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
Loading…
Reference in New Issue