(values: any)
| 49 | |
| 50 | |
| 51 | const handlerSave = async (values: any) => { |
| 52 | const res = await save(values); |
| 53 | setEditorVisible(false); |
| 54 | if (res.success) { |
| 55 | message.success("保存成功"); |
| 56 | } |
| 57 | actionRef.current?.reload(); |
| 58 | } |
| 59 | |
| 60 | const handlerSchema = async (json: any) => { |
| 61 | const res = await schema({ |