【新增】在翻译文件中添加多吉云AccessKey和SecretKey的相关翻译,更新阿里云ESA的配置接口,优化CA管理功能,增强表单验证逻辑,提升用户体验。

This commit is contained in:
chudong
2025-06-20 10:07:56 +08:00
parent cc5b8aada4
commit eb6172436c
107 changed files with 1008 additions and 406 deletions

View File

@@ -8,6 +8,7 @@ import {
useForm,
useLoadingMask,
useMessage,
useSearch,
} from '@baota/naive-ui/hooks'
import { useError } from '@baota/hooks/error'
import { $t } from '@locales/index'
@@ -135,6 +136,14 @@ export const useController = () => {
storage: 'certManagePageSize',
})
// 搜索实例
const { SearchComponent } = useSearch({
onSearch: (value) => {
param.value.search = value
fetch()
},
})
/**
* @description 打开上传证书弹窗
*/
@@ -189,14 +198,14 @@ export const useController = () => {
})
}
onMounted(() => fetch())
return {
loading,
fetch,
TableComponent,
PageComponent,
SearchComponent,
getRowClassName,
param,
data,
openUploadModal,
openViewModal,
}