东方网升 react 长列表组件
发布
更改package.json版本
yarn run build
-
npm publish
注:镜像源需切换回NPM官方源
链接
示例
cd example
yarn
yarn start
使用之前
该组件依赖于react,antd-mobile
何时使用
- 移动端需要长列表时
API
<ListView
data={this.state.data}
height="736"
key='list'
endReached={this.endReached}
item={ListItem}
handleRefresh={this.handleRefresh}
/>
upload props
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
data | 列表数据 | Array | - |
item | 单项列表组件 | react | - |
endReached | 下拉加载 | function | - |
sectionHeader | 单项列表顶部顶部 | react | null |
header | 列表头部 | react | null |
empty | 列表为空时的样式 | react | 暂无数据 |
handleRefresh | 上拉刷新 | function | - |
footer | 底部加载样式 | react | loading |