- html 代碼
{{ index + 1 }}. {{ item.title }}
{{ item.source }}{{ item.createTime }}
加載中…
沒(méi)有更多了
- js 代碼
data(){ return{ cjwtList: [], pageSize: 10, total: 0, loadingUp: false, noMore: false }}
load() { this.loadingUp = true this.noMore = false this.pageSize = this.pageSize + 5; if (this.cjwtList.length == this.total) { this.loadingUp = false this.noMore = true } else { setTimeout(() => { this.noMore = false this.getCjwtList() }, 2000) } }