feat: acme 账号增加提示信息 (#1259)

This commit is contained in:
zhengkunwang223 2023-06-05 18:33:29 +08:00 committed by GitHub
parent bb49a610a2
commit 9f4e5050dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -1480,6 +1480,8 @@ const message = {
renewSuccess: 'Renewal succeeded',
renewWebsite:
'This certificate has been associated with the following websites, and the renewal will be applied to these websites simultaneously',
createAcme: 'Create Account',
acmeHelper: 'Acme account is used to apply for free certificates',
},
firewall: {
notSupport:

View File

@ -1446,6 +1446,7 @@ const message = {
renewSuccess: '续签成功',
renewWebsite: '该证书已经和以下网站关联续签会同步应用到这些网站',
createAcme: '创建账户',
acmeHelper: 'Acme 账户用于申请免费证书',
},
firewall: {
notSupport: '未检测到系统防火墙firewalld 或者 ufw请参考官方文档进行安装',

View File

@ -3,6 +3,7 @@
<template #header>
<DrawerHeader :header="$t('website.acmeAccountManage')" :back="handleClose" />
</template>
<el-alert :title="$t('ssl.acmeHelper')" type="info" :closable="false" style="margin-bottom: 5px" />
<ComplexTable :data="data" :pagination-config="paginationConfig" @search="search()" v-loading="loading">
<template #toolbar>
<el-button type="primary" @click="openCreate">{{ $t('website.addAccount') }}</el-button>