2021-02-19 09:56:19 +08:00
|
|
|
|
---
|
|
|
|
|
title: 组合条件
|
|
|
|
|
description:
|
|
|
|
|
type: 0
|
|
|
|
|
group: null
|
|
|
|
|
menuName: 组合条件
|
|
|
|
|
icon:
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## 基本用法
|
|
|
|
|
|
|
|
|
|
用于设置复杂组合条件,支持添加条件,添加分组,设置组合方式,拖拽排序等功能。
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
2022-03-15 15:57:28 +08:00
|
|
|
|
"searchable": true,
|
2021-02-19 09:56:19 +08:00
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"value": "a"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "B",
|
|
|
|
|
"value": "b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "C",
|
|
|
|
|
"value": "c"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "D",
|
|
|
|
|
"value": "d"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "E",
|
|
|
|
|
"value": "e"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "动态选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select2",
|
2021-08-09 18:05:01 +08:00
|
|
|
|
"source": "/api/mock2/form/getOptions?waitSeconds=1"
|
2021-02-19 09:56:19 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"type": "date",
|
|
|
|
|
"name": "date"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "时间",
|
|
|
|
|
"type": "time",
|
|
|
|
|
"name": "time"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期时间",
|
|
|
|
|
"type": "datetime",
|
|
|
|
|
"name": "datetime"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 值格式说明
|
|
|
|
|
|
|
|
|
|
```ts
|
|
|
|
|
type ValueGroup = {
|
|
|
|
|
conjunction: 'and' | 'or';
|
|
|
|
|
children: Array<ValueGroup | ValueItem>;
|
|
|
|
|
};
|
|
|
|
|
type ValueItem = {
|
|
|
|
|
// 左侧字段,这块有预留类型,不过目前基本上只是字段。
|
|
|
|
|
left: {
|
|
|
|
|
type: 'field';
|
|
|
|
|
field: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 还有更多类型,暂不细说
|
|
|
|
|
op: 'equals' | 'not_equal' | 'less' | 'less_or_equal';
|
|
|
|
|
|
|
|
|
|
// 根据字段类型和 op 的不同,值格式会不一样。
|
|
|
|
|
// 如果 op 是范围,right 就是个数组 [开始值,结束值],否则就是值。
|
|
|
|
|
right: any;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type Value = ValueGroup;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 字段选项
|
|
|
|
|
|
|
|
|
|
字段选项为这个组件主要配置部分,通过 `fields` 字段来配置,有哪些字段,并且字段的类型是什么,支持哪些比较操作符。
|
|
|
|
|
|
|
|
|
|
`fields` 为数组类型,每个成员表示一个可选字段,支持多个层,配置示例
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "字段1"
|
|
|
|
|
// 字段1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "字段2"
|
|
|
|
|
// 字段2
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "字段分组",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "字段3"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "字段4"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 支持的字段类型
|
|
|
|
|
|
|
|
|
|
这里面能用的字段类型和表单项中的字段类型不一样,还没支持那么多,基本上只有一些基础的类型,其他复杂类型还需后续扩充,目前基本上支持以下这些类型。
|
|
|
|
|
|
|
|
|
|
### 文本
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"text"`
|
|
|
|
|
- `label` 字段名称。
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为 `[ 'equal', 'not_equal', 'is_empty', 'is_not_empty', 'like', 'not_like', 'starts_with', 'ends_with' ]` 如果不要那么多,可以配置覆盖。
|
|
|
|
|
- `defaultOp` 默认为 `"equal"`
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "a"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 数字
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"number"`
|
|
|
|
|
- `label` 字段名称。
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为 `[ 'equal', 'not_equal', 'less', 'less_or_equal', 'greater', 'greater_or_equal', 'between', 'not_between', 'is_empty', 'is_not_empty' ]` 如果不要那么多,可以配置覆盖。
|
|
|
|
|
- `defaultOp` 默认为 `"equal"`
|
|
|
|
|
- `minimum` 最小值
|
|
|
|
|
- `maximum` 最大值
|
|
|
|
|
- `step` 步长
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "a",
|
|
|
|
|
"minimum": 1,
|
|
|
|
|
"maximum": 10,
|
|
|
|
|
"step": 1
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 日期
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"date"`
|
|
|
|
|
- `label` 字段名称。
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为 `[ 'equal', 'not_equal', 'less', 'less_or_equal', 'greater', 'greater_or_equal', 'between', 'not_between', 'is_empty', 'is_not_empty' ]` 如果不要那么多,可以配置覆盖。
|
|
|
|
|
- `defaultOp` 默认为 `"equal"`
|
|
|
|
|
- `defaultValue` 默认值
|
|
|
|
|
- `format` 默认 `"YYYY-MM-DD"` 值格式
|
|
|
|
|
- `inputFormat` 默认 `"YYYY-MM-DD"` 显示的日期格式。
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"type": "date",
|
|
|
|
|
"name": "a"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 日期时间
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"datetime"`
|
|
|
|
|
- `label` 字段名称。
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为 `[ 'equal', 'not_equal', 'less', 'less_or_equal', 'greater', 'greater_or_equal', 'between', 'not_between', 'is_empty', 'is_not_empty' ]` 如果不要那么多,可以配置覆盖。
|
|
|
|
|
- `defaultOp` 默认为 `"equal"`
|
|
|
|
|
- `defaultValue` 默认值
|
|
|
|
|
- `format` 默认 `""` 值格式
|
|
|
|
|
- `inputFormat` 默认 `"YYYY-MM-DD HH:mm"` 显示的日期格式。
|
|
|
|
|
- `timeFormat` 默认 `"HH:mm"` 时间格式,决定输入框有哪些。
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"type": "datetime",
|
|
|
|
|
"name": "a"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 时间
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"time"`
|
|
|
|
|
- `label` 字段名称。
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为 `[ 'equal', 'not_equal', 'less', 'less_or_equal', 'greater', 'greater_or_equal', 'between', 'not_between', 'is_empty', 'is_not_empty' ]` 如果不要那么多,可以配置覆盖。
|
|
|
|
|
- `defaultOp` 默认为 `"equal"`
|
|
|
|
|
- `defaultValue` 默认值
|
|
|
|
|
- `format` 默认 `"HH:mm"` 值格式
|
|
|
|
|
- `inputFormat` 默认 `"HH:mm"` 显示的日期格式。
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"type": "time",
|
|
|
|
|
"name": "a"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 下拉选择
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"select"`
|
|
|
|
|
- `label` 字段名称。
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为 `[ 'select_equals', 'select_not_equals', 'select_any_in', 'select_not_any_in' ]` 如果不要那么多,可以配置覆盖。
|
|
|
|
|
- `defaultOp`
|
|
|
|
|
- `options` 选项列表,`Array<{label: string, value: any}>`
|
|
|
|
|
- `source` 动态选项,请配置 api。
|
|
|
|
|
- `searchable` 是否可以搜索
|
2021-10-26 14:25:12 +08:00
|
|
|
|
- `autoComplete` 自动提示补全,每次输入新内容后,将调用接口,根据接口返回更新选项。
|
2021-02-19 09:56:19 +08:00
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-02-19 09:56:19 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"type": "select",
|
2022-11-29 09:47:49 +08:00
|
|
|
|
"placeholder": "这个是下拉框",
|
2021-02-19 09:56:19 +08:00
|
|
|
|
"name": "a",
|
2021-08-09 18:05:01 +08:00
|
|
|
|
"source": "/api/mock2/form/getOptions?waitSeconds=1",
|
2021-02-19 09:56:19 +08:00
|
|
|
|
"searchable": true
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
2021-04-08 13:37:28 +08:00
|
|
|
|
|
2021-10-26 14:25:12 +08:00
|
|
|
|
配置`autoComplete`属性后,每次输入新内容后会自动调用接口加载新的选项,用数据映射,获取变量 term,为当前输入的关键字。
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "选项自动补全",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"searchable": true,
|
|
|
|
|
"autoComplete": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/options/autoComplete?term=$term",
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2022-04-07 14:54:33 +08:00
|
|
|
|
### 自定义
|
|
|
|
|
|
|
|
|
|
- `type` 字段配置中配置成 `"custom"`
|
|
|
|
|
- `label` 字段名称
|
|
|
|
|
- `placeholder` 占位符
|
|
|
|
|
- `operators` 默认为空,需配置自定义判断条件,支持字符串或 key-value 格式
|
|
|
|
|
- `value` 字段配置右边值需要渲染的组件,支持 amis 输入类组件或自定义输入类组件
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "自定义",
|
|
|
|
|
"type": "custom",
|
|
|
|
|
"name": "a",
|
|
|
|
|
"value": {
|
|
|
|
|
"type": "input-color"
|
|
|
|
|
},
|
|
|
|
|
"operators": [
|
|
|
|
|
"equal",
|
|
|
|
|
{
|
|
|
|
|
"label": "等于(自定义)",
|
|
|
|
|
"value": "custom_equal"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
其中`operators`通过配置 values 还支持右边多个组件的渲染,`right`值格式为对象,`key`为组件的`name`
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "自定义",
|
|
|
|
|
"type": "custom",
|
|
|
|
|
"name": "a",
|
|
|
|
|
"value": {
|
|
|
|
|
"type": "input-color"
|
|
|
|
|
},
|
|
|
|
|
"operators": [
|
|
|
|
|
{
|
|
|
|
|
"label": "等于(自定义)",
|
|
|
|
|
"value": "custom_equal"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "属于",
|
|
|
|
|
"value": "belong",
|
|
|
|
|
"values": [
|
|
|
|
|
{
|
|
|
|
|
"type": "input-text",
|
|
|
|
|
"name": "color1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "tpl",
|
|
|
|
|
"tpl": "~"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "input-text",
|
|
|
|
|
"name": "color2"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2021-04-08 13:37:28 +08:00
|
|
|
|
## 字段选项远程拉取
|
|
|
|
|
|
|
|
|
|
- 方式 1 配置 `source` 接口返回的数据对象 `data` 中存在 fields 变量即可。
|
|
|
|
|
- 方式 2 关联上下文变量如 `source: "${xxxxField}"`
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
2021-06-07 10:09:55 +08:00
|
|
|
|
"body": [
|
2021-04-08 13:37:28 +08:00
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
2023-06-12 12:58:22 +08:00
|
|
|
|
"source": "/api/condition-fields/custom?a=${a}&waitSeconds=2"
|
2021-04-08 13:37:28 +08:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
2021-04-12 19:52:10 +08:00
|
|
|
|
|
2022-09-16 10:47:34 +08:00
|
|
|
|
## 字段选项类型
|
|
|
|
|
|
|
|
|
|
> 2.3.0 及以上版本
|
|
|
|
|
|
2023-06-12 12:58:22 +08:00
|
|
|
|
通过 selectMode 配置组合条件左侧选项类型,可配置项为`list`、`tree`、`chained`,默认为`list`。这三个数据格式基本类似,只是下拉框展示方式不同,`tree`是树形下拉,`chained`为多个级联的下拉。当存在多层 children 嵌套时,建议使用`tree`。
|
2022-09-16 10:47:34 +08:00
|
|
|
|
|
|
|
|
|
selectMode 为`list`时
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"value": "a"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "B",
|
|
|
|
|
"value": "b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "C",
|
|
|
|
|
"value": "c"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "D",
|
|
|
|
|
"value": "d"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "E",
|
|
|
|
|
"value": "e"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
selectMode 为`tree`时
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"selectMode": "tree",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "树形结构",
|
|
|
|
|
"type": "tree",
|
|
|
|
|
"name": "tree",
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
"label": "Folder A",
|
2023-02-05 13:17:04 +08:00
|
|
|
|
"type": "tree",
|
|
|
|
|
"name": "Folder_A",
|
|
|
|
|
"type": "number",
|
2022-09-16 10:47:34 +08:00
|
|
|
|
"value": 1,
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "file A",
|
2023-02-05 13:17:04 +08:00
|
|
|
|
"value": 2,
|
|
|
|
|
"name": "file_A",
|
|
|
|
|
"type": "number",
|
2022-09-16 10:47:34 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "Folder B",
|
|
|
|
|
"value": 3,
|
2023-02-05 13:17:04 +08:00
|
|
|
|
"name": "Folder_B",
|
|
|
|
|
"type": "number",
|
2022-09-16 10:47:34 +08:00
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "file b1",
|
2023-02-05 13:17:04 +08:00
|
|
|
|
"value": 3.1,
|
|
|
|
|
"name": "file_b1",
|
|
|
|
|
"type": "number"
|
2022-09-16 10:47:34 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "file b2",
|
2023-02-05 13:17:04 +08:00
|
|
|
|
"value": 3.2,
|
|
|
|
|
"name": "file_b2",
|
|
|
|
|
"type": "number"
|
2022-09-16 10:47:34 +08:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2023-06-12 12:58:22 +08:00
|
|
|
|
> 3.2.0 及以上版本
|
|
|
|
|
|
|
|
|
|
selectMode 为`chained`时,使用`fields`字段
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"selectMode": "chained",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "链式结构",
|
|
|
|
|
"name": "chained",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "Folder A",
|
|
|
|
|
"name": "Folder_A",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "file A",
|
|
|
|
|
"name": "file_A",
|
|
|
|
|
"type": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "file B",
|
|
|
|
|
"name": "file_B",
|
|
|
|
|
"type": "text"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
selectMode 为`chained`时,使用`source`字段
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"selectMode": "chained",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"source": "/api/condition-fields/chained"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2022-01-13 19:32:50 +08:00
|
|
|
|
## 简易模式
|
|
|
|
|
|
|
|
|
|
通过 builderMode 配置为简易模式,在这个模式下将不开启树形分组功能,输出结果只有一层,方便后端实现简单的 SQL 生成。
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"builderMode": "simple",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"value": "a"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "B",
|
|
|
|
|
"value": "b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "C",
|
|
|
|
|
"value": "c"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "D",
|
|
|
|
|
"value": "d"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "E",
|
|
|
|
|
"value": "e"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "动态选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select2",
|
|
|
|
|
"source": "/api/mock2/form/getOptions?waitSeconds=1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"type": "date",
|
|
|
|
|
"name": "date"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "时间",
|
|
|
|
|
"type": "time",
|
|
|
|
|
"name": "time"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期时间",
|
|
|
|
|
"type": "datetime",
|
|
|
|
|
"name": "datetime"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
在这个模式下还可以通过 `showANDOR` 来显示顶部的条件类型切换
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"builderMode": "simple",
|
|
|
|
|
"showANDOR": true,
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"value": "a"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "B",
|
|
|
|
|
"value": "b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "C",
|
|
|
|
|
"value": "c"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "D",
|
|
|
|
|
"value": "d"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "E",
|
|
|
|
|
"value": "e"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "动态选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select2",
|
|
|
|
|
"source": "/api/mock2/form/getOptions?waitSeconds=1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"type": "date",
|
|
|
|
|
"name": "date"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "时间",
|
|
|
|
|
"type": "time",
|
|
|
|
|
"name": "time"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期时间",
|
|
|
|
|
"type": "datetime",
|
|
|
|
|
"name": "datetime"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2022-06-14 11:53:36 +08:00
|
|
|
|
## 非内嵌模式
|
|
|
|
|
|
|
|
|
|
当表单区域较窄时,可以使用非内嵌模式,弹窗设置具体信息
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"embed": false,
|
|
|
|
|
"title": "条件组合设置",
|
|
|
|
|
"builderMode": "simple",
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
2023-05-19 12:31:08 +08:00
|
|
|
|
"pickerIcon": {
|
|
|
|
|
"type": "icon",
|
|
|
|
|
"icon": "edit",
|
|
|
|
|
"className": "w-4 h-4"
|
|
|
|
|
},
|
2022-06-14 11:53:36 +08:00
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"value": "a"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "B",
|
|
|
|
|
"value": "b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "C",
|
|
|
|
|
"value": "c"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "D",
|
|
|
|
|
"value": "d"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "E",
|
|
|
|
|
"value": "e"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "动态选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select2",
|
|
|
|
|
"source": "/api/mock2/form/getOptions?waitSeconds=1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"type": "date",
|
|
|
|
|
"name": "date"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "时间",
|
|
|
|
|
"type": "time",
|
|
|
|
|
"name": "time"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期时间",
|
|
|
|
|
"type": "datetime",
|
|
|
|
|
"name": "datetime"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2023-06-30 11:38:01 +08:00
|
|
|
|
## 拖拽控制
|
|
|
|
|
|
|
|
|
|
当`draggable`为`false`时,关闭拖拽
|
|
|
|
|
|
|
|
|
|
```schema: scope="body"
|
|
|
|
|
{
|
|
|
|
|
"type": "form",
|
|
|
|
|
"debug": true,
|
|
|
|
|
"body": [
|
|
|
|
|
{
|
|
|
|
|
"type": "condition-builder",
|
|
|
|
|
"label": "条件组件",
|
|
|
|
|
"title": "条件组合设置",
|
|
|
|
|
"draggable": false,
|
|
|
|
|
"name": "conditions",
|
|
|
|
|
"description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where",
|
|
|
|
|
"pickerIcon": {
|
|
|
|
|
"type": "icon",
|
|
|
|
|
"icon": "edit",
|
|
|
|
|
"className": "w-4 h-4"
|
|
|
|
|
},
|
|
|
|
|
"fields": [
|
|
|
|
|
{
|
|
|
|
|
"label": "文本",
|
|
|
|
|
"type": "text",
|
|
|
|
|
"name": "text"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "数字",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"name": "number"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "布尔",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"name": "boolean"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"label": "A",
|
|
|
|
|
"value": "a"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "B",
|
|
|
|
|
"value": "b"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "C",
|
|
|
|
|
"value": "c"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "D",
|
|
|
|
|
"value": "d"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "E",
|
|
|
|
|
"value": "e"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "动态选项",
|
|
|
|
|
"type": "select",
|
|
|
|
|
"name": "select2",
|
|
|
|
|
"source": "/api/mock2/form/getOptions?waitSeconds=1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"label": "日期",
|
|
|
|
|
"type": "date",
|
|
|
|
|
"name": "date"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "时间",
|
|
|
|
|
"type": "time",
|
|
|
|
|
"name": "time"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"label": "日期时间",
|
|
|
|
|
"type": "datetime",
|
|
|
|
|
"name": "datetime"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2021-04-12 19:52:10 +08:00
|
|
|
|
## 属性表
|
|
|
|
|
|
2023-06-12 12:58:22 +08:00
|
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
2022-09-16 10:47:34 +08:00
|
|
|
|
| -------------- | ------------------ | -------- | ------------------------------ |
|
|
|
|
|
| className | `string` | | 外层 dom 类名 |
|
|
|
|
|
| fieldClassName | `string` | | 输入字段的类名 |
|
|
|
|
|
| source | `string` | | 通过远程拉取配置项 |
|
|
|
|
|
| embed | `boolean` | true | 内嵌展示 |
|
|
|
|
|
| title | `string` | | 弹窗配置的顶部标题 |
|
|
|
|
|
| fields | | | 字段配置 |
|
|
|
|
|
| showANDOR | `boolean` | | 用于 simple 模式下显示切换按钮 |
|
|
|
|
|
| showNot | `boolean` | | 是否显示「非」按钮 |
|
2023-06-30 11:38:01 +08:00
|
|
|
|
| draggable | `boolean` | true | 是否可拖拽 |
|
2022-09-16 10:47:34 +08:00
|
|
|
|
| searchable | `boolean` | | 字段是否可搜索 |
|
2023-06-12 12:58:22 +08:00
|
|
|
|
| selectMode | `'list'` \| `'tree'` \| `'chained'` | `'list'` | 组合条件左侧选项类型。`'chained'`模式需要`3.2.0及以上版本` |
|
|
|
|
|
| addBtnVisibleOn | `string` | | 表达式:控制按钮“添加条件”的显示。参数为`depth`、`breadth`,分别代表深度、长度。表达式需要返回`boolean`类型`3.2.0及以上版本` |
|
|
|
|
|
| addGroupBtnVisibleOn | `string` | | 表达式:控制按钮“添加条件组”的显示。参数为`depth`、`breadth`,分别代表深度、长度。表达式需要返回`boolean`类型`3.2.0及以上版本` |
|