import React from "react" import { Row, Col, Popconfirm } from "antd" import { DeleteOutlined, FormOutlined } from "@ant-design/icons" let columns = (edit: (value: { id: number, name: string, }) => void, del: (id: number) => void) => [ { title: 'ID', dataIndex: 'id', key: 'id', align: 'center' }, { title: '名称', dataIndex: 'name', key: 'name', align: 'center' }, { title: '操作', dataIndex: 'cz', key: 'cz', align: 'center', width: 200, render: (a: string, b: { id: number, name: string }) => ( edit(b)} style={{fontSize: "12px"}}> 编辑 del(b.id)} okText="是" cancelText="否" > 删除 ) } ] export default columns