【新增】在翻译文件中添加ACME服务相关翻译

【修复】编辑状态部署阶段插件配置的数据读取
【修复】编辑状态授权Api添加插件类型插件配置无法编辑的问题
This commit is contained in:
chudong
2025-06-20 15:21:22 +08:00
parent 6a2d3f98cd
commit f89b62c2d9
79 changed files with 322 additions and 179 deletions

View File

@@ -130,13 +130,13 @@ export const useController = (): AuthApiManageControllerExposes => {
{
title: $t('t_1_1746754499371'),
key: 'type',
width: 120,
width: 140,
render: (row) => <TypeIcon icon={row.type} type="success" />,
},
{
title: $t('t_2_1746754500270'),
key: 'type',
width: 180,
width: 200,
render: (row) => (
<NSpace>
{row.access_type?.map((type) => {
@@ -162,7 +162,7 @@ export const useController = (): AuthApiManageControllerExposes => {
{
title: $t('t_8_1745215914610'),
key: 'actions',
width: 240,
width: 200,
align: 'right',
fixed: 'right',
render: (row) => {
@@ -756,6 +756,9 @@ export const useApiFormController = (props: ApiFormControllerProps): ApiFormCont
? pluginConfig.config
: JSON.stringify(pluginConfig.config, null, 2)
}
const handleConfigUpdate = (value: string) => {
;(param.value.config as PluginAccessConfig).config = value
}
return (
<NFormItem
path="config.params"
@@ -778,7 +781,13 @@ export const useApiFormController = (props: ApiFormControllerProps): ApiFormCont
),
}}
>
<NInput type="textarea" value={getConfigValue()} placeholder={pluginActionTips.value} rows={4} />
<NInput
type="textarea"
value={getConfigValue()}
onUpdateValue={handleConfigUpdate}
placeholder={pluginActionTips.value}
rows={4}
/>
</NFormItem>
)
}),