ai-bot/app/admin/(default)/dashboard/page.tsx

71 lines
1.7 KiB
TypeScript
Raw Normal View History

"use client";
import { Button, Card, Drawer, Space, Table } from "antd";
import { useState } from "react";
import '@ant-design/v5-patch-for-react-19';
import tableConfig from "./config"
import { useAntdTable } from "ahooks";
import { User } from "@/app/_lib/data/user";
import { mRequest } from "@/app/_lib/request";
interface DataType {
key: string;
name: string;
age: number;
address: string;
tags: string[];
}
const data: DataType[] = [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
tags: ['nice', 'developer'],
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
tags: ['loser'],
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sydney No. 1 Lake Park',
tags: ['cool', 'teacher'],
},
];
export default function Page() {
const [open, setOpen] = useState(false)
const { tableProps, loading, error } = useAntdTable(({ current, pageSize }) => mRequest<{
total: number;
list: User[];
}>('GET', `/api/links?page=${current}&pageSize=${pageSize}}`),
{
defaultPageSize: 10,
}
);
return (
<>
<Card
title="链接管理"
extra={
<Button type="primary" onClick={() => {
setOpen(true)
}}></Button>
}>
<Table
columns={tableConfig}
dataSource={data}
/>
</Card>
<Drawer open={open} onClose={() => {
setOpen(false)
}} />
</>
)
}