lind 2c7ed5871d fix(search): fix typings.d.tsg 3 anni fa
..
GroupNameControl.tsx 72b66bef30 fix(route): merge xyh 3 anni fa
index.less fb98e6bb78 feat(menu): menu search 3 anni fa
index.tsx 2c7ed5871d fix(search): fix typings.d.tsg 3 anni fa
readme.md 0093e68bf4 fix(search): fix search component 3 anni fa
service.ts b3c7ae08fe feat(search): SearchComponent 4 anni fa
typings.d.ts 2c7ed5871d fix(search): fix typings.d.tsg 3 anni fa

readme.md

字段数据由后端提供

```typescript jsx { title: '测试字段',

dataIndex

: 'test',

valueType

: 'select',

align

: 'center',

request

: () => request('/jetlinks/dictionary/device-log-type/items')

.then(response =>
  response.result
    .map((item: { text: string, value: string }) =>
      ({ label: item.text, value: item.value }))),

} ,


### `valueType` 对应类型

- `digit` 数字类型
- `dateTime` 日期时间

## defaultParams

支持两种类型的默认参数

```typescript jsx
const a = { [{ column: 'test', value: 'admin' }] };

const b = {
  [
    {
      terms: [{ column: 'parentId$isnull', value: '' }, { column: 'parentId$not', value: 'test', type: 'or' }],
    },
    {
      terms: [{ column: 'id$not', value: 'test', type: 'and' }],
    },
  ]
}