Showing
2 changed files
with
2 additions
and
1 deletions
| @@ -122,7 +122,8 @@ export struct LiveLikeComponent { | @@ -122,7 +122,8 @@ export struct LiveLikeComponent { | ||
| 122 | 122 | ||
| 123 | if (this.likeCount != 0) { | 123 | if (this.likeCount != 0) { |
| 124 | RelativeContainer() { | 124 | RelativeContainer() { |
| 125 | - Image(this.styleType == 1 ? $r('app.media.comment_icon_number_bg') : $r('app.media.ic_like_back_Select')) | 125 | + ///2是直播,直播的单独一种样式, |
| 126 | + Image( this.contentDetailData.newsType == 2 ? $r('app.media.live_like_icon_number_bg') : (this.styleType == 1 ? $r('app.media.comment_icon_number_bg') : $r('app.media.ic_like_back_Select'))) | ||
| 126 | .objectFit(ImageFit.Fill) | 127 | .objectFit(ImageFit.Fill) |
| 127 | .height(10) | 128 | .height(10) |
| 128 | .resizable({ | 129 | .resizable({ |
-
Please register or login to post a comment