--- title: 组合条件 description: type: 0 group: null menuName: 组合条件 icon: --- ## 基本用法 用于设置复杂组合条件,支持添加条件,添加分组,设置组合方式,拖拽排序等功能。 ```schema: scope="body" { "type": "form", "debug": true, "body": [ { "type": "condition-builder", "label": "条件组件", "name": "conditions", "description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where", "searchable": true, "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" } ] } ] } ] } ``` ## 值格式说明 ```ts type ValueGroup = { conjunction: 'and' | 'or'; children: Array; }; 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, "body": [ { "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, "body": [ { "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, "body": [ { "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, "body": [ { "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, "body": [ { "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` 默认为 `"select_equals"` - `options` 选项列表,`Array<{label: string, value: any}>` - `source` 动态选项,请配置 api。 - `searchable` 是否可以搜索 - `autoComplete` 自动提示补全,每次输入新内容后,将调用接口,根据接口返回更新选项。 - `maxTagCount` 可以限制标签的最大展示数量,超出数量的部分会收纳到 Popover 中,可以通过 `overflowTagPopover` 配置 Popover 相关的属性,注意该属性仅在多选模式开启后生效。 ```schema: scope="body" { "type": "form", "debug": true, "body": [ { "type": "condition-builder", "label": "条件组件", "name": "conditions", "description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where", "fields": [ { "label": "A", "type": "select", "placeholder": "这个是下拉框", "name": "a", "source": "/api/mock2/form/getOptions?waitSeconds=1", "searchable": true } ] } ] } ``` 配置`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", } ] } ] } ``` ### 自定义 - `type` 字段配置中配置成 `"custom"` - `label` 字段名称 - `placeholder` 占位符 - `operators` 默认为空,需配置自定义判断条件,支持字符串或 key-value 格式 - `defaultOp` 默认操作符 - `value` 字段配置右边值需要渲染的组件,支持 amis 输入类组件或自定义输入类组件 - `defaultValue` 右边值的默认值 ```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" }, "defaultOp": "equal", "defaultValue": "#ff0000", "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" } ] } ] } ] } ] } ``` ## 字段选项远程拉取 - 方式 1 配置 `source` 接口返回的数据对象 `data` 中存在 fields 变量即可。 - 方式 2 关联上下文变量如 `source: "${xxxxField}"` ```schema: scope="body" { "type": "form", "body": [ { "type": "condition-builder", "label": "条件组件", "name": "conditions", "description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where", "source": "/api/condition-fields/custom?a=${a}&waitSeconds=2" } ] } ``` ## 字段选项类型 > 2.3.0 及以上版本 通过 selectMode 配置组合条件左侧选项类型,可配置项为`list`、`tree`、`chained`,默认为`list`。这三个数据格式基本类似,只是下拉框展示方式不同,`tree`是树形下拉,`chained`为多个级联的下拉。当存在多层 children 嵌套时,建议使用`tree`。 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", "type": "tree", "name": "Folder_A", "type": "number", "value": 1, "children": [ { "label": "file A", "value": 2, "name": "file_A", "type": "number", }, { "label": "Folder B", "value": 3, "name": "Folder_B", "type": "number", "children": [ { "label": "file b1", "value": 3.1, "name": "file_b1", "type": "number" }, { "label": "file b2", "value": 3.2, "name": "file_b2", "type": "number" } ] } ] } ] } ] } ] } ``` > 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" } ] } ``` ## 简易模式 通过 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" } ] } ] } ] } ``` ## 非内嵌模式 当表单区域较窄时,可以使用非内嵌模式,弹窗设置具体信息 ```schema: scope="body" { "type": "form", "debug": true, "body": [ { "type": "condition-builder", "label": "条件组件", "embed": false, "title": "条件组合设置", "builderMode": "simple", "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" } ] } ] } ] } ``` ## 拖拽控制 当`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" } ] } ] } ] } ``` ## 配合公式编辑器 > `3.2.0` 及以上版本 可以配置`formula`属性,将字段输入控件变成公式编辑器。 ```schema: scope="body" { "type": "form", "debug": true, "body": [ { "type": "condition-builder", "label": "条件组件", "name": "conditions", "description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where", "searchable": true, "formula": { "mode":"input-group", "inputSettings":{}, "allowInput":true, "mixedMode": true, "variables": [ { "label": "表单字段", "children": [ { "label": "文章名", "value": "name", "tag": "文本" }, { "label": "作者", "value": "author", "tag": "文本" }, { "label": "售价", "value": "price", "tag": "数字" }, { "label": "出版时间", "value": "time", "tag": "时间" }, { "label": "版本号", "value": "version", "tag": "数字" }, { "label": "出版社", "value": "publisher", "tag": "文本" } ] }, { "label": "流程字段", "children": [ { "label": "联系电话", "value": "telphone" }, { "label": "地址", "value": "addr" } ] }, { "label": "长文本测试分类长文本测试分类长文本测试分类长文本测试分类", "children": [ { "label": "这是一段测试长文本这是一段测试长文本这是一段测试长文本", "value": "longtext", "tag": "文本" } ] } ] }, "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" } ] } ] } ] } ``` ## 开启条件设置 通过配置 `showIf` 开启,开启后条件中额外还能配置启动条件。 ```schema: scope="body" { "type": "form", "debug": true, "body": [ { "type": "condition-builder", "label": "条件组件", "title": "条件组合设置", "draggable": false, "name": "conditions", "description": "适合让用户自己拼查询条件,然后后端根据数据生成 query where", "showIf": true, "pickerIcon": { "type": "icon", "icon": "edit", "className": "w-4 h-4" }, "value": { "id": "1a23a453ce5c", "conjunction": "and", "children": [ { "id": "550de894b404" } ] }, "formulaForIf": { "mode":"input-group", "variables": [ { "label": "表单字段", "children": [ { "label": "文章名", "value": "name", "tag": "文本" }, { "label": "作者", "value": "author", "tag": "文本" }, { "label": "售价", "value": "price", "tag": "数字" }, { "label": "出版时间", "value": "time", "tag": "时间" }, { "label": "版本号", "value": "version", "tag": "数字" }, { "label": "出版社", "value": "publisher", "tag": "文本" } ] }, { "label": "流程字段", "children": [ { "label": "联系电话", "value": "telphone" }, { "label": "地址", "value": "addr" } ] }, { "label": "长文本测试分类长文本测试分类长文本测试分类长文本测试分类", "children": [ { "label": "这是一段测试长文本这是一段测试长文本这是一段测试长文本", "value": "longtext", "tag": "文本" } ] } ] }, "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" } ] } ] } ] } ``` ## 属性表 | 属性名 | 类型 | 默认值 | 说明 | 版本 | | -------------------- | ----------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------- | ------- | | className | `string` | | 外层 dom 类名 | | fieldClassName | `string` | | 输入字段的类名 | | source | `string` | | 通过远程拉取配置项 | | embed | `boolean` | true | 内嵌展示 | | title | `string` | | 弹窗配置的顶部标题 | | fields | | | 字段配置 | | showANDOR | `boolean` | | 用于 simple 模式下显示切换按钮 | | showNot | `boolean` | | 是否显示「非」按钮 | | draggable | `boolean` | true | 是否可拖拽 | | searchable | `boolean` | | 字段是否可搜索 | | 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` | | inputSettings | `InputSettings` | | 开启公式编辑模式时的输入控件类型 | `3.2.0` | | formula | `object` | | 字段输入控件变成公式编辑器。 | `3.2.0` | | showIf | `boolean` | | 开启后条件中额外还能配置启动条件。 | `3.2.0` | | formulaForIf | `object` | | 给 showIF 表达式用的公式信息 | `3.4.0` | ### InputSettings ```typescript interface InputSettings { /* 类型 */ type: 'text' | 'number' | 'boolean' | 'date' | 'time' | 'datetime' | 'select'; /* 数字类型 - 步长 */ step?: number; /* 数字类型 - 最小值 */ min?: number; /* 数字类型 - 最大值 */ max?: number; /* 数字类型 - 精度 */ precision?: number; /* 日期时间类型 - 格式 */ format?: stirng; /* 日期时间类型 - 输入框格式 */ inputFormat?: string; /* 日期时间类型 - 时间格式 */ timeFormat?: string; /* 选择类型 - 选项集合 */ options?: {label: string; value: any}[]; /* 选择类型 - 是否多选 */ multiple?: boolean; /* 布尔类型 - 真值 label */ trueLabel?: string; /* 布尔类型 - 假值 label */ falseLabel?: string; defaultValue?: any; } ```