gdpaoup
This commit is contained in:
@@ -515,10 +515,16 @@ export default {
|
||||
},
|
||||
// 发现回复列表
|
||||
getReplyList(id) {
|
||||
this.page_[id] = 0;
|
||||
console.log(this.page_);
|
||||
this.$u.post("article/articleReplyList", {id: id, page: 0}).then(res => {
|
||||
this.allList[id] = res.data;
|
||||
this.page_[id] = 0;
|
||||
if (!this.page_[id] === 0) {
|
||||
}
|
||||
console.log(this.page_[id]);
|
||||
this.$u.post("article/articleReplyList", {id: id, page: this.page_[id]}).then(res => {
|
||||
console.log(this.page_);
|
||||
if (res.errCode == 0) {
|
||||
this.page_[id]++;
|
||||
this.allList[id] = res.data;
|
||||
}
|
||||
})
|
||||
},
|
||||
// 预览图片
|
||||
@@ -536,7 +542,6 @@ export default {
|
||||
scrollBottom(e) {
|
||||
this.page++;
|
||||
this.getComment();
|
||||
console.log(e);
|
||||
},
|
||||
// 跳转到商品
|
||||
gotoInfo(id) {
|
||||
|
||||
Reference in New Issue
Block a user