30 lines
974 B
TypeScript
30 lines
974 B
TypeScript
"use client"
|
|
import { Suspense } from "react"
|
|
import { getPageBatch } from "@/actions/batch"
|
|
import { DataTable, useDataTable } from "@/components/data-table"
|
|
import type { User } from "@/models/user"
|
|
|
|
export default function UserPage() {
|
|
const table = useDataTable<User>((page, size) => getPageBatch({ page, size }))
|
|
console.log(table, "table")
|
|
|
|
return (
|
|
<Suspense>
|
|
<DataTable<User>
|
|
{...table}
|
|
columns={[
|
|
{ header: "ID", accessorKey: "id" },
|
|
{ header: "批次号", accessorKey: "batch_no" },
|
|
{ header: "城市", accessorKey: "city" },
|
|
{ header: "省份", accessorKey: "prov" },
|
|
{ header: "数量", accessorKey: "count" },
|
|
{ header: "提取IP", accessorKey: "ip" },
|
|
{ header: "运营商", accessorKey: "isp" },
|
|
{ header: "可用资源", accessorKey: "resource_id" },
|
|
{ header: "时间", accessorKey: "time" },
|
|
]}
|
|
/>
|
|
</Suspense>
|
|
)
|
|
}
|