diff --git a/src/pages/Work/index.tsx b/src/pages/Work/index.tsx
index 2c1670b..709ce40 100644
--- a/src/pages/Work/index.tsx
+++ b/src/pages/Work/index.tsx
@@ -117,13 +117,13 @@ const ListItem = ({ item, type, fetchData }: ListItemProps) => {
{dayjs(+item.createTime!).format('YYYY-MM-DD HH:mm:ss')}
-
+
{type !== "wall" ? (

) :
}
-
+
{type === "link" ? (
<>
名称:{item.title}
@@ -219,8 +219,8 @@ const WorkPage = () => {
<>
-
-
+
+
{(["comment", "link", "wall"] as Menu[]).map((menu) => (
- {
-
+
{active === "link" && renderList(linkList, "link")}
{active === "comment" && renderList(commentList, "comment")}
{active === "wall" && renderList(wallList, "wall")}