国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

結(jié)合mint-ui移動(dòng)端下拉加載實(shí)踐方法總結(jié)

2019-11-19 14:58:02
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

1.npm i mint-ui -S

2.main.js中引入import 'mint-ui/lib/style.css'

3.以下是代碼結(jié)構(gòu)部分:

<template> <div class="main-body" :style="{'-webkit-overflow-scrolling': scrollMode}"> <v-loadmore :bottom-method="loadBottom" :bottom-all-loaded="allLoaded" :auto-fill="false" ref="loadmore">  <ul class="list">   <li v-for="(item, index) in proCopyright">   <div>{{item.FZD_ZPMC}}</div>   </li>  </ul> </v-loadmore> </div></template><script> import {Loadmore} from 'mint-ui';export default { components:{  'v-loadmore':Loadmore, }, data () { return {  pageNo:1,  pageSize:50,  proCopyright:[],  allLoaded: false, //是否可以上拉屬性,false可以上拉,true為禁止上拉,就是不讓往上劃加載數(shù)據(jù)了  scrollMode:"auto", //移動(dòng)端彈性滾動(dòng)效果,touch為彈性滾動(dòng),auto是非彈性滾動(dòng)  totalpage:0,  loading:false,  bottomText: '', } }, mounted(){ this.loadPageList(); //初次訪(fǎng)問(wèn)查詢(xún)列表 }, methods:{ loadBottom:function() {  // 上拉加載  this.more();// 上拉觸發(fā)的分頁(yè)查詢(xún)  this.$refs.loadmore.onBottomLoaded();// 固定方法,查詢(xún)完要調(diào)用一次,用于重新定位 }, loadPageList:function (){  // 查詢(xún)數(shù)據(jù)  this.axios.get('/copyright?key='+ encodeURIComponent('公司名稱(chēng)')+"&mask=001"+"&page="+this.pageNo+"&size="+this.pageSize).then(res =>{  console.log(res);  this.proCopyright = res.data.result.PRODUCTCOPYRIGHT;  this.totalpage = Math.ceil(res.data.result.COUNTOFPRODUCTCOPYRIGHT/this.pageSize);  if(this.totalpage == 1){   this.allLoaded = true;  }  this.$nextTick(function () {   // 是否還有下一頁(yè),加個(gè)方法判斷,沒(méi)有下一頁(yè)要禁止上拉   this.scrollMode = "touch";   this.isHaveMore();  });  }); }, more:function (){  // 分頁(yè)查詢(xún)  if(this.totalpage == 1){  this.pageNo = 1;  this.allLoaded = true;  }else{  this.pageNo = parseInt(this.pageNo) + 1;  this.allLoaded = false;  }  console.log(this.pageNo);  this.axios.get('/copyright?key='+ encodeURIComponent('公司名稱(chēng)')+"&mask=001"+"&page="+this.pageNo+"&size="+this.pageSize).then(res=>{  this.proCopyright = this.proCopyright.concat(res.data.result.PRODUCTCOPYRIGHT);  console.log(this.proCopyright);  this.isHaveMore();  }); }, isHaveMore:function(){  // 是否還有下一頁(yè),如果沒(méi)有就禁止上拉刷新  //this.allLoaded = false; //true是禁止上拉加載  if(this.pageNo == this.totalpage){  this.allLoaded = true;  } } },}</script><!-- Add "scoped" attribute to limit CSS to this component only --><style scoped> li{  padding:30px 0;  background-color: #ccc;  margin-bottom:20px; }</style>

以上這篇結(jié)合mint-ui移動(dòng)端下拉加載實(shí)踐方法總結(jié)就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 建湖县| 苍溪县| 白城市| 永新县| 左云县| 西和县| 贵阳市| 荥阳市| 将乐县| 平顺县| 中宁县| 平原县| 永宁县| 金湖县| 潍坊市| 道孚县| 怀仁县| 临泉县| 沂水县| 揭西县| 合水县| 二手房| 南木林县| 平和县| 通许县| 石楼县| 双辽市| 遂平县| 保定市| 阿拉善右旗| 牡丹江市| 南木林县| 闽侯县| 图木舒克市| 平江县| 织金县| 凤山市| 那曲县| 南雄市| 德安县| 余姚市|