1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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 (
<div style={{ height: "200vh" }}>
<AutoTable
pagetitle={route.name}
pageextra={
<Button
onClick={() => {
setvs(true);
}}
>
add
</Button>
}
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",
},
]}
></AutoTable>
<DrawInitForm
title="Basic Drawer"
onClose={() => {
setvs(false);
}}
visible={vs}
fields={{
a: {
value: null,
type: "input",
title: "b",
name: ["a"],
required: true,
},
}}
></DrawInitForm>
</div>
);
}
export default Table;