"use client" import { Button, Card, Image, Popconfirm, Space, Table } from "antd"; import '@ant-design/v5-patch-for-react-19'; import { useRouter } from "next/navigation"; import { useAntdTable } from "ahooks"; import { deleteArticle, getArticleList } from "@/app/_lib/data/article"; import { PICTURE_PREFIX } from "@/app/_lib/utils"; export default function Page() { const router = useRouter() const { tableProps, refresh } = useAntdTable(({ current, pageSize }) => { return getArticleList({ page: current, pageSize }) }) return ( }> ( <> ) }, { title: '网址', dataIndex: 'link', width: 100 }, { title: '操作', render: (_, row) => ( { deleteArticle(row._id).then(() => { refresh() }) }} > ) } ]} >
) }