30 lines
742 B
TypeScript
30 lines
742 B
TypeScript
import DataTable from "@/components/data-table"
|
|
import Page from "@/components/page"
|
|
|
|
export default function FundsPage() {
|
|
return (
|
|
<Page>
|
|
<DataTable
|
|
data={[]}
|
|
status="done"
|
|
columns={[
|
|
{ accessorKey: "date", header: "交易时间" },
|
|
{ accessorKey: "product", header: "用户" },
|
|
{ accessorKey: "plan", header: "资金去向" },
|
|
{
|
|
accessorKey: "price",
|
|
header: "金额",
|
|
},
|
|
{ accessorKey: "connections", header: "操作前约(元)" },
|
|
{ accessorKey: "account", header: "备注" },
|
|
]}
|
|
pagination={{
|
|
page: 0,
|
|
size: 10,
|
|
total: 0,
|
|
}}
|
|
/>
|
|
</Page>
|
|
)
|
|
}
|