修改本地生活点评的显示逻辑
This commit is contained in:
parent
1c332efdc0
commit
25bb15d144
@ -169,7 +169,10 @@ export default {
|
||||
this.flag = false;
|
||||
}
|
||||
this.isShow = res.rows[0].merchant_info.quick_purchase_enabled == 1
|
||||
this.commentList = this.commentList.concat(res.rows);
|
||||
const list = res.rows.filter((item) => {
|
||||
return item.status == 2;
|
||||
});
|
||||
this.commentList = this.commentList.concat(list);
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user