(id: any)
| 23 | const [current, setCurrent] = React.useState<any>(null); |
| 24 | |
| 25 | const handlerDelete = async (id: any) => { |
| 26 | const res = await remove(id); |
| 27 | if (res.success) { |
| 28 | message.success("保存成功"); |
| 29 | } |
| 30 | actionRef.current?.reload(); |
| 31 | } |
| 32 | |
| 33 | const handlerCopy = async (id: any) => { |
| 34 | const res = await copy(id); |