完整的上拉加载,下拉刷新demo
这里需要对场景有要求,如果用户并不清楚上拉是加载更多的情况下,就不如触发到底部多少距离后 直接加载下一页来得方便
demo一:下拉刷新默认html模板
XML/HTML Code复制内容到剪贴板
- <template>
- <div class="List" :style="{'-webkit-overflow-scrolling': scrollMode}">
- <h1>{{ msg }} </h1>
- <p>接收路由参数:{{ $route.params.cid }}</p>
- <v-loadmore :top-method="loadTop" :bottom-method="loadBottom" :bottom-all-loaded="allLoaded" :auto-fill="false" ref="loadmore">
- <ul class="list" v-for="(val, key) in pageList">
- <li>
- <div>{{val.title}}</div>
- </li>
- </ul>
- </v-loadmore>
- </div>
- </template>
- <script>
- import {Loadmore} from 'mint-ui';
- import {Indicator} from 'mint-ui'
- export default {
- data:function() {
- return {
- msg: '单词学习',
- searchCondition:{ //分页属性
- cid: this.$route.params.cid,
- pageNo:"1",
- pageSize:"10"
- },
- pageList:[],
- allLoaded: false, //是否可以上拉属性,false可以上拉,true为禁止上拉,就是不让往上划加载数据了
- scrollMode:"auto" //移动端弹性滚动效果,touch为弹性滚动,auto是非弹性滚动
- }
- },
- components: {
- 'v-loadmore':Loadmore // 为组件起别名,vue转换template标签时不会区分大小写,例如:loadMore这种标签转换完就会变成loadmore,容易出现一些匹配问题
- // 推荐应用组件时用a-b形式起名
- },
- mounted(){
- this.init(); //初次访问重新设置标题名
- this.loadPageList(); //初次访问查询列表
- },
- methods: {
- init:function () {
- this.$store.commit('changePageTitle', '学习列表');
- },
- loadTop:function() { //组件提供的下拉触发方法
- //下拉刷新
- this.loadPageList();
- this.$refs.loadmore.onTopLoaded();// 固定方法,查询完要调用一次,用于重新定位
- },
- loadBottom:function() {
- // 上拉加载
- this.more();// 上拉触发的分页查询
- this.$refs.loadmore.onBottomLoaded();// 固定方法,查询完要调用一次,用于重新定位
- },
- loadPageList:function (){
- this.searchCondition.pageNo = 1;
- // 查询数据
- this.$http.get('http://demo996.liqinwl.com/api/v1/article/index', {
- params: this.searchCondition
- }).then((response) => {
- // 是否还有下一页,加个方法判断,没有下一页要禁止上拉
- this.isHaveMore(response.data._links.next);
- this.pageList = response.data.items;
- this.$nextTick(function () {
- // 原意是DOM更新循环结束时调用延迟回调函数,大意就是DOM元素在因为某些原因要进行修改就在这里写,要在修改某些数据后才能写,
- // 这里之所以加是因为有个坑,iphone在使用-webkit-overflow-scrolling属性,就是移动端弹性滚动效果时会屏蔽loadmore的上拉加载效果,
- // 花了好久才解决这个问题,就是用这个函数,意思就是先设置属性为auto,正常滑动,加载完数据后改成弹性滑动,安卓没有这个问题,移动端弹性滑动体验会更好
- this.scrollMode = "touch";
- });
- });
- },
- more:function (){
- // 分页查询
- this.searchCondition.pageNo = parseInt(this.searchCondition.pageNo) + 1;
- Indicator.open('loading...');
- this.$http.get('http://demo996.liqinwl.com/api/v1/article/index', {
- params: this.searchCondition
- }).then((response) => {
- Indicator.close();
- this.pageList = this.pageList.concat(response.data.items);
- this.isHaveMore(response.data._links.next);
- });
- },
- isHaveMore:function(isHaveMore){
- // 是否还有下一页,如果没有就禁止上拉刷新
- this.allLoaded = true; //true是禁止上拉加载
- if(isHaveMore){
- this.allLoaded = false;
- }
- }
- }
- }
- </script>
demo二: 下拉刷新自定义html模板:
XML/HTML Code复制内容到剪贴板
- <template>
- <div class="List" :style="{'-webkit-overflow-scrolling': scrollMode}">
- <h1>{{ msg }} </h1>
- <p>接收路由参数:{{ $route.params.cid }}</p>
- <v-loadmore :top-method="loadTop" :bottom-method="loadBottom" :bottom-all-loaded="allLoaded" :auto-fill="false" ref="loadmore" @top-status-change="handleTopChange" :top-distance=50>
- <!--
- 自定义下拉刷新html模板 标签设置 slot 属性为 top,类名为 mint-loadmore-top
- pull:组件已经被按下,但按下的距离未达到 topDistance,此时释放不会触发 top-method,列表会回到初始位置
- drop:按下的距离不小于 topDistance,此时释放会触发 top-method
- loading:组件已被释放,top-method 正在执行 每当组件的状态发生变化时,loadmore 都会触发 top-status-change 所绑定的方法名称,如handleTopChange
- -->
- <div slot="top" class="mint-loadmore-top">
- <span v-show="topStatus === 'pull'" :class="{ 'rotate': topStatus === 'drop' }">↓</span>
- <span v-show="topStatus === 'loading'">Loading...</span>
- <span v-show="topStatus === 'drop'">刷新成功</span>
- </div>
- <ul class="list" v-for="(val, key) in pageList">
- <li>
- <div>{{val.title}}</div>
- </li>
- </ul>
- </v-loadmore>
- </div>
- </template>
- <script>
- import {Loadmore} from 'mint-ui';
- import {Indicator} from 'mint-ui'
- export default {
- data:function() {
- return {
- msg: '单词学习',
- searchCondition:{ //分页属性
- cid: this.$route.params.cid,
- pageNo:"1",
- pageSize:"10"
- },
- pageList:[],
- allLoaded: false, //是否可以上拉属性,false可以上拉,true为禁止上拉,就是不让往上划加载数据了
- scrollMode:"auto", //移动端弹性滚动效果,touch为弹性滚动,auto是非弹性滚动
- topStatus: ''
- }
- },
- components: {
- 'v-loadmore':Loadmore // 为组件起别名,vue转换template标签时不会区分大小写,例如:loadMore这种标签转换完就会变成loadmore,容易出现一些匹配问题
- // 推荐应用组件时用a-b形式起名
- },
- mounted(){
- this.init(); //初次访问重新设置标题名
- this.loadPageList(); //初次访问查询列表
- },
- methods: {
- init () {
- this.$store.commit('changePageTitle', '学习列表');
- },
- loadTop() { //组件提供的下拉触发方法
- //下拉刷新
- this.loadPageList();
- this.$refs.loadmore.onTopLoaded();// 固定方法,查询完要调用一次,用于重新定位
- },
- loadBottom() {
- // 上拉加载
- this.more();// 上拉触发的分页查询
- this.$refs.loadmore.onBottomLoaded();// 固定方法,查询完要调用一次,用于重新定位
- },
- loadPageList (){
- this.searchCondition.pageNo = 1;
- // 查询数据
- this.$http.get('http://demo996.liqinwl.com/api/v1/article/index', {
- params: this.searchCondition
- }).then((response) => {
- // 是否还有下一页,加个方法判断,没有下一页要禁止上拉
- this.isHaveMore(response.data._links.next);
- this.pageList = response.data.items;
- this.$nextTick(function () {
- // 原意是DOM更新循环结束时调用延迟回调函数,大意就是DOM元素在因为某些原因要进行修改就在这里写,要在修改某些数据后才能写,
- // 这里之所以加是因为有个坑,iphone在使用-webkit-overflow-scrolling属性,就是移动端弹性滚动效果时会屏蔽loadmore的上拉加载效果,
- // 花了好久才解决这个问题,就是用这个函数,意思就是先设置属性为auto,正常滑动,加载完数据后改成弹性滑动,安卓没有这个问题,移动端弹性滑动体验会更好
- this.scrollMode = "touch";
- });
- });
- },
- more (){
- // 分页查询
- this.searchCondition.pageNo = parseInt(this.searchCondition.pageNo) + 1;
- Indicator.open('loading...');
- this.$http.get('http://demo996.liqinwl.com/api/v1/article/index', {
- params: this.searchCondition
- }).then((response) => {
- Indicator.close();
- this.pageList = this.pageList.concat(response.data.items);
- this.isHaveMore(response.data._links.next);
- });
- },
- isHaveMore(isHaveMore){
- // 是否还有下一页,如果没有就禁止上拉刷新
- this.allLoaded = true; //true是禁止上拉加载
- if(isHaveMore){
- this.allLoaded = false;
- }
- },
- handleTopChange(status) {
- this.topStatus = status;
- },
- }
- }
- </script>