+ {[
+ ["内容路径", content.paths ?? []],
+ ["Brief 城市", content.cities ?? []],
+ ].map(([title, rows]) => (
+
+
{String(title)}
+ {(rows as TopItem[]).length === 0 ? (
+
暂无数据
+ ) : (
+
+ {(rows as TopItem[]).slice(0, 5).map((item) => (
+ -
+ {item.name}
+ {item.count}
+
+ ))}
+
+ )}
+
+ ))}
+
+