后端没修完版

This commit is contained in:
Typer_Body
2026-05-05 15:08:04 +08:00
parent a8fba46040
commit e7c9bc69d3
156 changed files with 34633 additions and 2149 deletions
+2 -1
View File
@@ -14,7 +14,7 @@ export interface IDynamicFormItemSchema {
name: string;
required: boolean;
type: DynamicFormItemType;
description?: I18nObject;
description?: I18nObject | string;
options?: IDynamicFormItemOption[];
show_if?: IShowIfCondition;
@@ -28,6 +28,7 @@ export enum DynamicFormItemType {
FLOAT = 'float',
BOOLEAN = 'boolean',
STRING = 'string',
SECRET = 'secret',
TEXT = 'text',
STRING_ARRAY = 'array[string]',
FILE = 'file',