Type alias SearchItemProps

SearchItemProps: {
    col?: ColProps;
    component?: ComponentProps;
    order?: number;
    valueResolve?: ((context: any) => void);
    [key: string]: any;
}

搜索框字段配置

Type declaration

  • [key: string]: any
  • Optional col?: ColProps

    [a|el|n]-col的配置

  • Optional component?: ComponentProps

    组件配置

  • Optional order?: number

    字段排序号

  • Optional valueResolve?: ((context: any) => void)
      • (context: any): void
      • 值解析器

        Parameters

        • context: any

        Returns void

Generated using TypeDoc