修改本地生活点评的显示逻辑

This commit is contained in:
赵毅 2025-08-07 17:03:49 +08:00
parent 1c332efdc0
commit 25bb15d144

View File

@ -169,7 +169,10 @@ export default {
this.flag = false; this.flag = false;
} }
this.isShow = res.rows[0].merchant_info.quick_purchase_enabled == 1 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);
}) })
}, },