diff --git a/packages/localLife/detail/index.vue b/packages/localLife/detail/index.vue index 601967a9..8739ff34 100644 --- a/packages/localLife/detail/index.vue +++ b/packages/localLife/detail/index.vue @@ -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); }) },