diff --git a/src/routes/List/TableList.js b/src/routes/List/TableList.js index a74860c78d2026b4797a59031c211e3f068fb11f..776fde4a4be58739653281af930f461bdb817f9c 100644 --- a/src/routes/List/TableList.js +++ b/src/routes/List/TableList.js @@ -78,6 +78,7 @@ const CreateForm = Form.create()((props) => { const okHandle = () => { form.validateFields((err, fieldsValue) => { if (err) return; + form.resetFields(); handleAdd(fieldsValue); }); };