Feat:咨询观看量,点赞数显示调整

This commit is contained in:
LinCyJang
2026-01-31 14:39:41 +08:00
parent 285224284f
commit 2682ecaecd
14 changed files with 42 additions and 29 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ export default {
},
// 点赞数显示
cLikeCount: function () {
return this.data.like_count === 0 ? "" : this.data.like_count > 99 ? `99+` : this.data.like_count;
return this.data.like_count === 0 ? "" : this.$formatCount(this.data.like_count);
},
},
watch: {