diff --git a/subPackages/travelGuide/travelGuide.vue b/subPackages/travelGuide/travelGuide.vue index a6532ad..8f5f9dc 100644 --- a/subPackages/travelGuide/travelGuide.vue +++ b/subPackages/travelGuide/travelGuide.vue @@ -58,13 +58,16 @@ } }, onShow() { - this.showMore = true - this.list = [] - this.getArticleByType() + // this.showMore = true + // this.list = [] + // this.getArticleByType() }, onReady() { this.type_id = 42 this.getArticleType() + this.showMore = true + this.list = [] + this.getArticleByType() }, onLoad(options) { let that = this @@ -123,7 +126,7 @@ }, onReachBottom() { setTimeout(() => { - if (!this.showMore) this.getList() + if (this.showMore) this.getArticleByType() },1000) } }