update
This commit is contained in:
22
app/(articles)/recruitment/pages/[pageIndex]/page.tsx
Normal file
22
app/(articles)/recruitment/pages/[pageIndex]/page.tsx
Normal file
@ -0,0 +1,22 @@
|
||||
import ArticleList from "@/app/components/ArticleList";
|
||||
|
||||
const Page = ({
|
||||
params,
|
||||
}: {
|
||||
params: {
|
||||
pageIndex: string;
|
||||
};
|
||||
}) => {
|
||||
const { pageIndex } = params;
|
||||
return (
|
||||
<>
|
||||
<ArticleList
|
||||
title={"研究院招聘"}
|
||||
cid={"12"}
|
||||
pageNo={parseInt(pageIndex)}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user