加载中...
+ ) : (
+ materials.map((item) => (
+
+ {/* 顶部头像+系统创建+ID */}
+
+
+
+
+
+ 系统创建
+
+ ID: {item.id}
+
+
+
+ {/* 标题 */}
+
{item.title ? `【${item.title}】` : (item.content.length > 20 ? `【${item.content.slice(0, 20)}...】` : `【${item.content}】`)}
+ {/* 内容 */}
+
{item.content}
+ {/* 标签 */}
+ {item.tags && item.tags.length > 0 && (
+
+ {item.tags.map((tag, index) => (
+
+
+ {tag}
+
+ ))}
+
+ )}
+ {/* 操作按钮区 */}
+
+
+
+
+
+
+
+
+