# cc-pullScroolView #### 使用方法 ```使用方法 onReachBottom() { // 数据全部加载完 if (this.curPageNum * 10 >= this.totalNum) { } else { // 显示加载中 this.$refs.pullScroll.showUpLoading(); this.curPageNum++; this.requestData(); } }, ``` #### HTML代码实现部分 ```html ```