diff --git a/app/(main)/detail/[id]/page.tsx b/app/(main)/detail/[id]/page.tsx new file mode 100644 index 0000000..4e664af --- /dev/null +++ b/app/(main)/detail/[id]/page.tsx @@ -0,0 +1,32 @@ +import { getLinkList, getLinkListAll } from "@/app/_lib/data/link"; +import { LinkBlock } from "@/app/_ui/LinkListBox"; +import Search from "@/app/_ui/Search"; +import { use } from "react"; + +export default async function Page({ params }: { params: Promise<{ id: string }> }) { + + const id = (await params).id + const { list: linkList } = await getLinkList({ typeId: id }) + + return ( + <> + {/* */} +
+ +
+ { + linkList.map(val => ( + + + )) + } +
+
+ + {/* */} + + + + + ); +} diff --git a/app/_ui/LinkListBox.tsx b/app/_ui/LinkListBox.tsx index 41756d3..2101751 100644 --- a/app/_ui/LinkListBox.tsx +++ b/app/_ui/LinkListBox.tsx @@ -9,7 +9,7 @@ import { useAtom } from "jotai"; import { linkTypeAtom } from "../_lib/atom"; import Image from "next/image"; const PICTURE_PREFIX = 'https://newuitab.oss-cn-hangzhou.aliyuncs.com/ai_upload/downloads/' -const LinkBlock = ({ val }: { val: _Link }) => { +export const LinkBlock = ({ val }: { val: _Link }) => { return @@ -78,10 +78,12 @@ export default function LinkListBox({ linkTypeList, linkList, showHot, showRecen { linkList.filter(val => val.type === item._id).length >= 42 && - + 查看该分类下所有 - + }