更新树形结构

This commit is contained in:
2026-04-22 09:56:46 +08:00
parent 038e4d72d3
commit 0b352c2718
2 changed files with 287 additions and 116 deletions

View File

@@ -6,10 +6,15 @@ export interface CreationListParams {
keyword?: string;
}
export interface CreationImageItem {
name: string;
url: string;
}
export interface CreationTitleItem {
title: string;
htmlFileUrl: string;
jsonFileUrl: string[];
imageUrls: CreationImageItem[] | null;
}
export interface CreationThemeItem {
@@ -17,9 +22,14 @@ export interface CreationThemeItem {
titles: CreationTitleItem[];
}
export interface CreationContentTypeItem {
contentType: string;
themes: CreationThemeItem[];
}
export interface CreationTreeItem {
createdDate: string;
themes: CreationThemeItem[];
contentTypes: CreationContentTypeItem[];
}
export interface CreationListData {