mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 04:59:17 +08:00
e6d2b2a035
* fix:修复部分组件事件动作问题&补充组件动作表文档&规范事件动作参数类型 * fix:修复部分组件事件动作问题&补充组件动作表文档&规范事件动作参数类型 * fix:input-range类型声明问题 * fix:input-range单测问题 * fix:input-range单测u snapshot
3.1 KiB
Executable File
3.1 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
Switch 开关 | 0 | null | Switch | 51 |
基本用法
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"name": "switch",
"type": "switch",
"label": "开关",
"option": "开关说明"
}
]
}
配置真假值
默认情况:
- 开关打开时,表单项值为:true
- 开关关闭时,表单项值为:false
{
"type": "form",
"debug": true,
"body": [
{
"name": "switch",
"type": "switch",
"label": "开关"
}
]
}
如果你想调整这个值,可以配置trueValue
和falseValue
{
"type": "form",
"debug": true,
"body": [
{
"name": "switch",
"type": "switch",
"label": "开关",
"trueValue": 1,
"falseValue": 0
}
]
}
调整开关,观察数据域变化,会发现打开后值为1
,而关闭后为0
配置开启和关闭状态的文本
1.1.5 版本之后支持
{
"type": "form",
"body": [
{
"name": "switch",
"type": "switch",
"onText": "已开启飞行模式",
"offText": "已关闭飞行模式"
}
]
}
默认值
和其它表单项一样,如果要设置默认值,可以使用 value 属性
{
"type": "form",
"debug": true,
"body": [
{
"name": "switch",
"type": "switch",
"label": "开关",
"value": false
}
]
}
属性表
除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
option | string |
选项说明 | |
onText | string / IconSchema |
开启时开关显示的内容 | |
offText | string / IconSchema |
关闭时开关显示的内容 | |
trueValue | boolean / string / number |
true |
标识真值 |
falseValue | boolean / string / number |
false |
标识假值 |
IconSchema 配置
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
type | string |
icon |
|
icon | string |
icon 的类型 |
事件表
事件名称 | 事件参数 | 说明 |
---|---|---|
change | value: string | boolean 值变化 |
开关值发生变化时触发 |
动作表
动作名称 | 动作配置 | 说明 |
---|---|---|
setValue | value: string | boolean 更新的数据 |
更新数据 |