Fix:4813 【商城小程序】评价内容只有星级,没有填写其他内容时,星级下方增加显示“此用户没有填写评价”

This commit is contained in:
LinCyJang
2026-01-14 23:00:15 +08:00
parent f61e611a51
commit 4332fe91db
+7 -1
View File
@@ -21,7 +21,7 @@
</view>
<!-- 评论内容 -->
<view class="evaluate-infor">{{ item.comment }}</view>
<view class="evaluate-infor">{{ item.comment || '此用户没有填写评价'}}</view>
<!-- 图片/视频列表 -->
<view class="imgList">
@@ -231,4 +231,10 @@ export default {
color: #666;
line-height: 1.5;
}
.attr-bg{
background: rgba(197,39,51,0.1);
padding: 7rpx 5px;
width: fit-content;
border-radius: 12rpx;
}
</style>