+
+
+
+
+ setContent(editorInstance.getHtml())}
+ mode="default"
+ style={{
+ minHeight: 500,
+ background: isDark ? '#111827' : '#FFFFFF',
+ color: isDark ? '#e2e8f0' : '#1e293b',
+ }}
+ />
+
+
+ {/* 标题 */}
+
+
+ setTitle(e.target.value)}
+ placeholder="请输入文章标题"
+ maxLength={200}
+ showCount
+ />
+
+
+ {/* 分类 */}
+
+
+
+
+ {/* 标签 */}
+
+
+
+
+ {/* 摘要 */}
+
+
+ setSummary(e.target.value)}
+ placeholder="请输入文章摘要"
+ rows={3}
+ maxLength={500}
+ showCount
+ />
+
+
+ {/* 封面图 */}
+
+
+
setCoverImage(e.target.value)}
+ placeholder="请输入封面图片 URL"
+ />
+ {coverImage && (
+
+

{
+ (e.target as HTMLImageElement).style.display = 'none';
+ }}
+ />
+
+ )}
+
+
+ {/* Slug */}
+
+
+ setSlug(e.target.value)}
+ placeholder="例如: health-tips-for-elderly"
+ />
+
+
+ {/* 排序 */}
+
+
+ setSortOrder(Number(e.target.value))}
+ placeholder="0"
+ />
+
+