mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
965 B
965 B
Radios
单选框
type
请设置成radios
options
选项配置,类型为数组,成员格式如下。label
文字value
值
source
Api 地址,如果选项不固定,可以通过配置source
动态拉取。columnsCount
默认为1
可以配置成一行显示多个。- 更多配置请参考 FormItem
[
{
"name": "radios",
"type": "radios",
"label": "Radios",
"options": [
{
"label": "OptionA",
"value": "a"
},
{
"label": "OptionB",
"value": "b"
},
{
"label": "OptionC",
"value": "c"
},
{
"label": "OptionD",
"value": "d"
}
]
},
{
"type": "static",
"name": "radios",
"label": "当前值"
}
]