import React, { useState } from "react";
import AutoTable from "@/components/AutoTable";
import DrawInitForm from "@/components/DrawInitForm";
import { Button } from "antd";
function Table({ route }) {
const [vs, setvs] = useState();
return (
{
setvs(true);
}}
>
add
}
columns={[
{
title: "b",
dataIndex: "a",
key: "a",
with: 50,
},
{
title: "d",
dataIndex: "c",
key: "c",
},
]}
dataSource={[
{
a: "123",
c: "456",
},
{
a: "123",
c: "456",
},
{
a: "123",
c: "456",
},
]}
>
{
setvs(false);
}}
visible={vs}
fields={{
a: {
value: null,
type: "input",
title: "b",
name: ["a"],
required: true,
},
}}
>
);
}
export default Table;