antd的ProTable 组件如何给搜索框手动赋值

1.实现如图效果。当路由中包含classesId参数时,表格默认查询该分类下的数据,使用的ProTable组件。

配置列项时,在所属分类项中添加initialValue,并复制当前路由classesId参数。

import { history } from 'umi';

const classesId = history.location?.query?.classesId;

const columns = [
    ...,
    {
      title: '所属分类',
      dataIndex: 'classesId',
      align: 'center',
      initialValue: classesId,
      ...
    },
    ...
]

antd的ProTable 组件如何给搜索框手动赋值_第1张图片

但是在点击重置按钮的时候,搜索表单项会重置为initialValue,怎样才能重置时让表单项的值为空呢……

你可能感兴趣的:(react,antd,reactjs)