uni-load-more.md 1.6 KB
Newer Older
M
mehaotian 已提交
1 2 3

> **组件名:uni-load-more**
> 代码块: `uLoadMore`
4 5
> 
>  [点击下载&安装](https://ext.dcloud.net.cn/plugin?name=uni-load-more)
M
mehaotian 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

用于列表中,做滚动加载使用,展示 loading 的各种状态。

### 基本用法

``template`` 中使用组件

```html
<uni-load-more :status="more"></uni-load-more>
```

## API

### LoadMore Props

|属性名|类型|	可选值|默认值	|说明|
|:-:|:-:|:-:|:-:|:-:|
|iconSize|Number|-|24|指定图标大小|
|status|String	|more/loading/noMore|more|loading 的状态|
|showIcon|Boolean|-|true|是否显示 loading 图标|
|iconType|String|snow/circle/auto|auto|指定图标样式|
|color|String|-|#777777	|图标和文字颜色|
|contentText|Object|-|{contentdown: "上拉显示更多",contentrefresh: "正在加载...",contentnomore: "没有更多数据了"}|各状态文字说明	|

#### Status Options
|参数名称|说明|
|:-:|:-:|
33 34 35
|more|加载前|
|loading|加载中	|
|no-more|没有更多数据	|
M
mehaotian 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

#### IconType Options
|参数名称|说明|
|:-:|:-:|
|snow|ios雪花加载样式|
|circle	|安卓环形加载样式|
|auto|根据平台自动选择加载样式	|




> **说明**
> `iconType`为`snow`时,在`APP-NVUE`平台不可设置大小,在非`APP-NVUE`平台不可设置颜色



### LoadMore Events

|事件名					|说明				|返回值						|
|:-:						|:-:				|:-:						|
|clickLoadMore	|点击加载更多时触发	|e.detail={status:'loading'}|



## 组件示例

点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/load-more/load-more](https://hellouniapp.dcloud.net.cn/pages/extUI/load-more/load-more)