diff --git a/src/routes/List/TableList.js b/src/routes/List/TableList.js index a74860c7..776fde4a 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); }); };