简单评论组件测试 测试评论组件的基本显示功能 当前模式: {{testMode === 'with_comments' ? '有评论' : '无评论'}} 评论数量: {{commentsStatistics.commentCount}} 显示条件: commentCount > 0 = {{commentsStatistics.commentCount > 0}} 评论组件显示区域 商品评价 ({{ commentsStatistics.commentCount }}) {{commentsStatistics.goodRate}}% 好评 > {{commentItem.userName}} {{commentItem.commentContent}} 暂无评论 (commentCount = {{commentsStatistics.commentCount}}) 调试信息 wx:if 条件: commentsStatistics.commentCount > 0 实际值: {{commentsStatistics.commentCount}} > 0 结果: {{commentsStatistics.commentCount > 0}} 应该显示: {{commentsStatistics.commentCount > 0 ? '是' : '否'}}