import { Card, List, Table, Tag, Space, TableProps, Divider, Typography } from "antd" import { NavLink } from "react-router-dom" const data = [ { key: "输出token数", value: 2 }, { key: "输入token数", value: 2 }, { key: "模型", value: "xxx" } ] const outputTokenData = [ { key: "关键词提示", value: "xxx" }, { key: "问题", value: "xxx" }, { key: "数联网引用数据", value: "xxx" }, { key: "提供方", value: "xxx" }, { key: "token数量", value: 2 }, { key: "内容", value: "xxx" } ] interface DataType { key: string name: string age: number address: string tags: string[] } const columns: TableProps["columns"] = [ { title: "Name", dataIndex: "name", key: "name", render: (text) => {text} }, { title: "Age", dataIndex: "age", key: "age" }, { title: "Address", dataIndex: "address", key: "address" }, { title: "Tags", key: "tags", dataIndex: "tags", render: (_, { tags }) => ( <> {tags.map((tag) => { let color = tag.length > 5 ? "geekblue" : "green" if (tag === "loser") { color = "volcano" } return ( {tag.toUpperCase()} ) })} ) }, { title: "Action", key: "action", render: (_, record) => ( {/* Invite {record.name} */} Detail ) } ] const data1: 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 const ListDetail = () => { return (
( {item.value} )} />
输出token详情 ( {item.key} {item.value} )} />
columns={columns} dataSource={data1} />
) }