<Modal
      title="新增对账流水"
      visible={visible}
      onOk={() => {
        formRef.current.handleSubmit();
      }}
      onCancel={onClose}
      okText="确认"
      cancelText="取消"
      width={800}
      destroyOnClose // 关闭时销毁子元素
   >

destroyOnClose 属性,关闭时销毁子元素。再次打开内容就清空了~