This commit is contained in:
Gdpao
2020-08-14 11:33:57 +08:00
parent f4ae3578a2
commit ce1a8d6256
3 changed files with 46 additions and 8 deletions

View File

@@ -251,6 +251,7 @@
}
.child_content {
margin: 18rpx 0 18rpx 30rpx;
font-size: 26rpx;
}
}
.more-reply {
@@ -578,16 +579,15 @@ export default {
this.$u.post("article/articleReplyList", {id: id, page: this.page_[id]}).then(res => {
uni.hideLoading();
if (res.errCode == 0) {
if (res.data.length < 10) {
this.is_more = false;
}
// if (res.data.length < 10) {
// this.is_more = false;
// }
this.page_[id]++;
console.log(this.page_[id]);
this.$nextTick(() => {
this.allList[id] = res.data;
})
console.log(this.allList);
}
})
},