feat: add rich text help article editor

This commit is contained in:
wushumin
2026-05-27 14:41:28 +08:00
parent 2ccbd0ffe4
commit 7d901fb435
17 changed files with 1311 additions and 114 deletions

View File

@@ -1509,6 +1509,7 @@ export interface AdminHelpArticleItem {
title: string;
summary: string;
keywords: string[];
content_html: string;
content_blocks: string[];
is_recommended: boolean;
is_enabled: boolean;
@@ -1522,6 +1523,7 @@ export interface AdminHelpArticlePayload {
title: string;
summary: string;
keywords: string[];
content_html: string;
content_blocks: string[];
is_recommended: boolean;
is_enabled: boolean;