Loadmore 加载

使用指南

在 app.wxss 中引入组件库所有样式

  1. @import "path/to/zanui-weapp/dist/index.wxss";

在需要使用的页面里引入组件库模板

  1. <import src="path/to/zanui-weapp/dist/loadmore/index.wxml" />
  2. <!-- 直接使用 zan-loadmore 模板,并且直接传入设置值 -->
  3. <template is="zan-loadmore" data="{{ loading: true }}"></template>

代码演示

loadmore 支持三种状态,loading, nodata, nomore。传入指定的值即可显示

  1. <!-- 加载更多 -->
  2. <template is="zan-loadmore" data="{{ loading: true }}"></template>
  3. <!-- 没有可以显示的数据 -->
  4. <template is="zan-loadmore" data="{{ nodata: true }}"></template>
  5. <!-- 没有更多的数据了 -->
  6. <template is="zan-loadmore" data="{{ nomore: true }}"></template>

Loadmore 加载 - 图1
微信扫一扫

原文:

https://www.youzanyun.com/zanui/weapp#/zanui/interactive/loadmore