mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 11:58:10 +08:00
54e56402d2
* 文档样式一点小优化 * 文档拆分组件部分
1.3 KiB
1.3 KiB
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
PaginationWrapper 分页容器 | 0 | ⚙ 组件 | PaginationWrapper | 59 |
分页容器组件,可以用来对已有列表数据做分页处理。
- 输入:默认读取作用域中的 items 变量,如果是其他变量名请配置
inputName
。 - 输出:经过分页处理后会把分页后的数据下发给
outputName
(默认也是 items)对应的数据。
{
"type": "service",
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/crud/table",
"body": [
{
"type": "pagination-wrapper",
"inputName": "rows",
"outputName": "rows",
"perPage": 2,
"body": [
{
"type": "table",
"title": "分页表格",
"source": "${rows}",
"columns": [
{
"name": "engine",
"label": "Engine"
},
{
"name": "version",
"label": "Version"
}
]
}
]
}
]
}