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

36 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

2025-02-07 19:02:22 +08:00
"use client";
import { Button, Card, Space, Table } from "antd";
export default function Page() {
return (
2025-02-07 19:02:22 +08:00
<Card title="广告管理" extra={<Button type="primary">广</Button>}>
<Table
columns={[
{
title: '标题',
dataIndex: 'title',
},
{
title: '链接',
dataIndex: 'link',
},
{
title: '图片',
dataIndex: 'image',
},
{
title: '操作',
render: (_, row) => (
<Space>
<Button type="primary"></Button>
<Button type="primary"></Button>
</Space>
)
}
]}
>
</Table>
</Card>
)
}