Skip to content

generateSearchData

生成搜索组件的初始数据

代码示例

ts
// 搜索栏配置
const searchOptions = defineSearch([
  {
    type: SearchTypes.Button,
    label: '添加',
    props: {
      type: 'primary',
      onClick: () => {
        console.log('添加')
      }
    }
  },
  {
    type: SearchTypes.Input,
    field: 'keyword',
    label: '关键词',
    align: 'right',
    props: {
      placeholder: '请输入关键词',
      clearable: true,
      style: {
        width: '200px'
      }
    }
  },
]);
const initSearchData = generateSearchData(searchOptions);

参数

参数说明类型默认值
searchOptions搜索栏配置SearchOption[]-

返回值

参数说明类型
initSearchData搜索栏初始数据对象{[key: string]: any}