mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
9.8 KiB
Executable File
9.8 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
MatrixCheckboxes 矩阵 | 0 | null | MatrixCheckboxes | 30 |
矩阵类型的输入框。
基本用法
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"debug": true,
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}
]
}
全选
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"debug": true,
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"xCheckAll": true,
"yCheckAll": true,
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}
]
}
单选模式
配置"multiple": false
可以设置单选,配置singleSelectMode
可以设置单选模式
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"debug": true,
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"multiple": false,
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}
]
}
动态选项
可以配置 source 渲染动态选项
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"name": "matrix",
"type": "matrix-checkboxes",
"label": "动态矩阵组件",
"source": "/api/mock2/options/matrix?waitSeconds=1"
}
]
}
以上面为例,source 接口返回格式如下:
{
"status": 0,
"msg": "ok",
"data": {
"columns": [
{
"label": "Col A",
"col": "a"
},
{
"label": "Col B",
"col": "b"
},
{
"label": "Col C",
"col": "c"
},
{
"label": "Col D",
"col": "d"
},
{
"label": "Col E",
"col": "e"
}
],
"rows": [
{
"label": "Row 1",
"rol": 1
},
{
"label": "Row 2",
"rol": 2
},
{
"label": "Row 3",
"rol": 3
},
{
"label": "Row 4",
"rol": 4
},
{
"label": "Row 5",
"rol": 5
},
{
"label": "Row 6",
"rol": 6
}
]
}
}
column 模式
默认为 column 模式,即每列只能单选某个单元格
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"multiple": false,
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}
]
}
cell 模式
cell 模式,指全部选项中只能单选某个单元格
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"multiple": false,
"singleSelectMode": "cell",
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}
]
}
row 模式
row 模式,每行只能单选某个单元格
{
"type": "form",
"api": "/api/mock2/form/saveForm",
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"multiple": false,
"singleSelectMode": "row",
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
]
}
]
}
属性表
除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
columns | Array<column> |
列信息,数组中 label 字段是必须给出的 |
|
rows | Array<row> |
行信息, 数组中 label 字段是必须给出的 |
|
rowLabel | string |
行标题说明 | |
source | API | Api 地址,如果选项组不固定,可以通过配置 source 动态拉取。 |
|
multiple | boolean |
true |
是否多选 |
singleSelectMode | string |
"column" |
设置单选模式,multiple 为false 时有效,可设置为cell , row , column 分别为全部选项中只能单选某个单元格、每行只能单选某个单元格,每列只能单选某个单元格 |
textAlign | string |
"center" |
当开启多选+全选时,默认为'left' |
yCheckAll | boolean |
false |
列上的全选 |
xCheckAll | boolean |
false |
行上的全选 |
事件表
当前组件会对外派发以下事件,可以通过onEvent
来监听这些事件,并通过actions
来配置执行的动作,在actions
中可以通过${事件参数名}
或${event.data.[事件参数名]}
来获取事件产生的数据,详细请查看事件动作。
[name]
表示当前组件绑定的名称,即name
属性,如果没有配置name
属性,则通过value
取值。
事件名称 | 事件参数 | 说明 |
---|---|---|
change | [name]: Array 组件的值 |
选中值变化时触发 |
change
{
"type": "form",
"debug": true,
"body": [
{
"type": "matrix-checkboxes",
"name": "matrix",
"label": "Matrix",
"rowLabel": "行标题说明",
"columns": [
{
"label": "列1"
},
{
"label": "列2"
}
],
"rows": [
{
"label": "行1"
},
{
"label": "行2"
}
],
"onEvent": {
"change": {
"actions": [
{
"actionType": "toast",
"args": {
"msg": "${event.data.value|json}"
}
}
]
}
}
}
]
}
动作表
当前组件对外暴露以下特性动作,其他组件可以通过指定actionType: 动作名称
、componentId: 该组件id
来触发这些动作,动作配置可以通过args: {动作配置项名称: xxx}
来配置具体的参数,详细请查看事件动作。
动作名称 | 动作配置 | 说明 |
---|---|---|
clear | - | 清空 |
reset | - | 将值重置为resetValue ,若没有配置resetValue ,则清空 |
reload | - | 重新加载,调用 source ,刷新数据域数据刷新(重新加载) |
setValue | value: Array 更新的值 |
更新数据 |