【新增】部署类型七牛云oss、七牛云cdn、百度cdn、腾讯waf、腾讯edgeone、阿里云waf

【新增】解析类型godaddy
【新增】自定义CA授权管理
【调整】优化部署流程,减少代码冗余,提升类型添加效率
This commit is contained in:
chudong
2025-05-23 16:58:34 +08:00
parent 71de397e11
commit e5634d4992
263 changed files with 18348 additions and 14253 deletions

View File

@@ -6,7 +6,6 @@ import { useUploadCertController } from '@certManage/useController'
export default defineComponent({
name: 'UploadCert',
setup() {
const { UploadCertForm } = useUploadCertController()
return () => <UploadCertForm labelPlacement="top" />
},
})

View File

@@ -1,12 +1,11 @@
import { NInput, NButton } from 'naive-ui'
import { useTheme, useThemeCssVar } from '@baota/naive-ui/theme'
import { PlusOutlined } from '@vicons/antd'
import { Search } from '@vicons/carbon'
import { $t } from '@locales/index'
import { useController } from './useController'
import BaseComponent from '@components/baseComponent'
import EmptyState from '@components/emptyState'
import BaseComponent from '@components/BaseLayout'
import EmptyState from '@components/TableEmptyState'
/**
* 证书管理组件
@@ -27,8 +26,7 @@ export default defineComponent({
v-slots={{
headerLeft: () => (
<NButton type="primary" size="large" class="px-5" onClick={openUploadModal}>
<PlusOutlined class="text-[var(--text-color-3)] w-[1.6rem]" />
<span class="px-2">{$t('t_13_1745227838275')}</span>
{$t('t_13_1745227838275')}
</NButton>
),
headerRight: () => (

View File

@@ -1,4 +1,4 @@
import { NButton, NSpace, NTag, type DataTableColumns } from 'naive-ui'
import { NButton, NSpace, NTag, useMessage, type DataTableColumns } from 'naive-ui'
import {
useModal,
useTable,
@@ -13,7 +13,6 @@ import { useError } from '@baota/hooks/error'
import { $t } from '@locales/index'
import { useStore } from './useStore'
import UploadCert from './components/uploadCertForm'
import type { CertItem, CertListParams } from '@/types/cert'
@@ -90,16 +89,13 @@ export const useController = () => {
key: 'actions',
fixed: 'right' as const,
align: 'right',
width: 150,
width: 200,
render: (row: CertItem) => (
<NSpace justify="end">
<NButton
style={{ '--n-text-color': 'var(--text-color-3)' }}
size="tiny"
strong
secondary
onClick={() => downloadExistingCert(row.id)}
>
<NButton size="tiny" strong secondary type="primary" onClick={() => openViewModal(row)}>
</NButton>
<NButton size="tiny" strong secondary type="primary" onClick={() => downloadExistingCert(row.id.toString())}>
{$t('t_25_1745227838080')}
</NButton>
<NButton size="tiny" strong secondary type="error" onClick={() => handleDeleteCert(row)}>
@@ -165,7 +161,10 @@ export const useController = () => {
useModal({
title: $t('t_13_1745227838275'),
area: 600,
component: UploadCert,
component: () => {
const { UploadCertForm } = useUploadCertController()
return <UploadCertForm labelPlacement="top" />
},
footer: true,
onUpdateShow: (show) => {
if (!show) fetch()
@@ -184,7 +183,7 @@ export const useController = () => {
content: $t('t_30_1745227841739'),
onPositiveClick: async () => {
try {
await deleteExistingCert(id)
await deleteExistingCert(id.toString())
await fetch()
} catch (error) {
handleError(error)
@@ -193,6 +192,22 @@ export const useController = () => {
})
}
/**
* @description 打开查看证书弹窗
* @param {CertItem} cert - 证书对象
*/
const openViewModal = (cert: CertItem) => {
useModal({
title: '查看证书信息',
area: 600,
component: () => {
const { ViewCertForm } = useViewCertController(cert)
return <ViewCertForm labelPlacement="top" />
},
footer: false,
})
}
return {
loading,
fetch,
@@ -202,6 +217,7 @@ export const useController = () => {
param,
data,
openUploadModal,
openViewModal,
}
}
@@ -245,3 +261,80 @@ export const useUploadCertController = () => {
}
}
/**
* @description 查看证书控制器
* @param {CertItem} cert - 证书对象
*/
export const useViewCertController = (cert: CertItem) => {
/**
* @description 复制文本到剪贴板
* @param {string} text - 要复制的文本
*/
const copyToClipboard = async (text: string) => {
const message = useMessage()
try {
await navigator.clipboard.writeText(text)
message.success('复制成功')
} catch (error) {
// 降级方案:使用传统的复制方法
try {
const textArea = document.createElement('textarea')
textArea.value = text
document.body.appendChild(textArea)
textArea.select()
document.execCommand('copy')
document.body.removeChild(textArea)
message.success('复制成功')
} catch (error) {
message.error('复制失败')
}
}
}
// 合并证书内容cert + issuer_cert
const combinedCert = cert.cert + (cert.issuer_cert ? '\n' + cert.issuer_cert : '')
// 表单实例
const { component } = useForm({
config: [
useFormTextarea(
$t('t_34_1745227839375'),
'cert',
{ placeholder: '', rows: 8, readonly: true },
{},
{
suffix: [
() => (
<NButton size="tiny" type="primary" ghost onClick={() => copyToClipboard(combinedCert)}>
{$t('t_4_1747984130327')}
</NButton>
),
],
},
),
useFormTextarea(
$t('t_36_1745227838958'),
'key',
{ placeholder: '', rows: 8, readonly: true },
{},
{
suffix: [
() => (
<NButton size="tiny" type="primary" ghost onClick={() => copyToClipboard(cert.key)}>
{$t('t_4_1747984130327')}
</NButton>
),
],
},
),
],
defaultValue: {
cert: combinedCert,
key: cert.key,
},
})
return {
ViewCertForm: component,
}
}