mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:58:07 +08:00
728 B
728 B
Matrix
矩阵类型的输入框。
type
请设置成matrix
columns
列信息, 数组中label
字段是必须给出的rows
行信息, 数组中label
字段是必须给出的rowLabel
行标题说明source
Api 地址,如果选项不固定,可以通过配置source
动态拉取。详情- 更多配置请参考 FormItem
{
"type": "matrix",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}