feat: marketplace page

This commit is contained in:
Junyan Qin
2025-08-16 18:05:33 +08:00
parent 5179b3e53a
commit 28d4b1dd61
35 changed files with 1095 additions and 395 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
import { I18nLabel } from '@/app/infra/entities/common';
import { I18nObject } from '@/app/infra/entities/common';
export interface IDynamicFormItemSchema {
id: string;
default: string | number | boolean | Array<unknown>;
label: I18nLabel;
label: I18nObject;
name: string;
required: boolean;
type: DynamicFormItemType;
description?: I18nLabel;
description?: I18nObject;
options?: IDynamicFormItemOption[];
}
@@ -25,5 +25,5 @@ export enum DynamicFormItemType {
export interface IDynamicFormItemOption {
name: string;
label: I18nLabel;
label: I18nObject;
}