在使用vben的表格时,将搜索表单useSearchForm打开,会显示出来查询的字段。
在使用的时候,有些需求会要求拿到查询字段的值,来进行下一步的操作。
const [
registerTable,
{ reload, getSelectRows, clearSelectedRowKeys, getSelectRowKeys, getDataSource },
] = useTable({
api: materialList,
columns: basicColumns,
size: 'small',
rowKey: 'id',
useSearchForm: true,
formConfig: {
baseColProps: {
xl: 8,
},
labelWidth: 100,
schemas: basicSearchFormSchema,
},
//可拿到查询时的值 开启表单后,在请求之前处理搜索条件参数
handleSearchInfoFn: (e) => {
},
});