Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
zhaojunkai
2024-05-11 17:14:07 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9f809a037e6efcd1c2f26f29c01424d9d63a7cac
9f809a03
1 parent
e8dbfc8a
人民号-点赞后显示数量改为’已赞‘
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
sight_harmony/features/wdComponent/src/main/ets/components/view/LikeComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/view/LikeComponent.ets
View file @
9f809a0
...
...
@@ -80,7 +80,8 @@ export struct LikeComponent {
$r('app.media.icon_like_default_white'))
.width(18)
.height(18)
Text(this.likeCount >0?this.likeCount.toString(): '点赞')
// Text(this.likeCount >0?this.likeCount.toString(): '点赞')
Text(this.likeStatus ?'已赞': '点赞')
.margin({left:4})
.fontSize(14)
.fontColor(this.likeStatus ? '#ED2800' : '#666666')
...
...
Please
register
or
login
to post a comment