forked from p96170835/amis
86 lines
3.8 KiB
JSON
86 lines
3.8 KiB
JSON
{
|
||
"$id": "https://houtai.baidu.com/v2/schemas/form/chained-select.json#",
|
||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
"allOf": [
|
||
{
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/form.json#/definitions/item"
|
||
},
|
||
{
|
||
"additionalProperties": false,
|
||
"patternProperties": {
|
||
"^(\\$ref|options|source|multiple|joinValues|delimiter|extractValue|name|value|placeholder|label|remark|labelRemark|desc|description|inline|mode|horizontal|className|labelClassName|inputClassName|descriptionClassName|validations|validationErrors|validateOnChange|submitOnChange|disabled|disabledOn|visible|visibleOn|hidden|hiddenOn|required)$": {}
|
||
},
|
||
"properties": {
|
||
"$schema": {
|
||
"format": "uri",
|
||
"type": "string",
|
||
"description": "绑定 JSON 格式说明,可忽略!"
|
||
},
|
||
"type": {
|
||
"const": "chained-select",
|
||
"description": "指定为级联选择框"
|
||
}
|
||
},
|
||
"required": [
|
||
"type"
|
||
],
|
||
"type": "object"
|
||
}
|
||
],
|
||
"definitions": {
|
||
"common": {
|
||
"description": "级联选择框格式说明",
|
||
"allOf": [
|
||
{
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/form.json#/definitions/item"
|
||
},
|
||
{
|
||
"properties": {
|
||
"$ref": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/$ref",
|
||
"description": "引用页面中的定义"
|
||
},
|
||
"source": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/page.json#/definitions/api",
|
||
"description": "可用来通过 API 拉取 options。详情:https://baidu.github.io/amis/docs/api#formitem,也可以从当前作用域拉取数据 $typeOptions"
|
||
},
|
||
"options": {
|
||
"$ref": "https://houtai.baidu.com/v2/schemas/form.json#/definitions/optionsType",
|
||
"description": "选项集合"
|
||
},
|
||
"multiple": {
|
||
"default": false,
|
||
"description": "是否为多选",
|
||
"type": "boolean"
|
||
},
|
||
"joinValues": {
|
||
"default": true,
|
||
"description": "* 单选模式:当用户选中某个选项时,选项中的 value 将被作为该表单项的值提交,否则,整个选项对象都会作为该表单项的值提交。\n* 多选模式:选中的多个选项的 `value` 会通过 `delimiter` 连接起来,否则直接将以数组的形式提交值。",
|
||
"type": "boolean"
|
||
},
|
||
"delimiter": {
|
||
"default": ",",
|
||
"description": "分割符",
|
||
"type": "string"
|
||
},
|
||
"extractValue": {
|
||
"default": true,
|
||
"description": "开启后将选中的选项 value 的值封装为数组,作为当前表单项的值。",
|
||
"type": "boolean"
|
||
}
|
||
},
|
||
"type": "object"
|
||
}
|
||
]
|
||
},
|
||
"test": {
|
||
"properties": {
|
||
"type": {
|
||
"const": "chained-select"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"description": "级联选择框格式说明",
|
||
"type": "object"
|
||
} |