Showing
2 changed files
with
5 additions
and
4 deletions
| @@ -379,7 +379,7 @@ export struct MorningEveningPaperComponent { | @@ -379,7 +379,7 @@ export struct MorningEveningPaperComponent { | ||
| 379 | Image(this.currentStatus === PlayerConstants.STATUS_START ? $r("app.media.icon_audio_pause_svg") : $r("app.media.icon_audio_playing_svg")) | 379 | Image(this.currentStatus === PlayerConstants.STATUS_START ? $r("app.media.icon_audio_pause_svg") : $r("app.media.icon_audio_playing_svg")) |
| 380 | .width(20) | 380 | .width(20) |
| 381 | .height(20) | 381 | .height(20) |
| 382 | - .margin({ left: 10 })// .alignSelf(ItemAlign.Center) | 382 | + .margin({ left: this.currentStatus === PlayerConstants.STATUS_START ?6:9 })// .alignSelf(ItemAlign.Center) |
| 383 | .objectFit(ImageFit.Contain) | 383 | .objectFit(ImageFit.Contain) |
| 384 | .onClick(() => { | 384 | .onClick(() => { |
| 385 | console.log("TAG", "cj compInfoBean onClick1 = " + this.isAudioPlaying) | 385 | console.log("TAG", "cj compInfoBean onClick1 = " + this.isAudioPlaying) |
| @@ -194,8 +194,8 @@ export struct ENewspaperListDialog { | @@ -194,8 +194,8 @@ export struct ENewspaperListDialog { | ||
| 194 | Column() { | 194 | Column() { |
| 195 | if (positionItem.shortTitle) { | 195 | if (positionItem.shortTitle) { |
| 196 | Text(positionItem.shortTitle) | 196 | Text(positionItem.shortTitle) |
| 197 | - .fontSize($r('app.float.font_size_17')) | ||
| 198 | - .lineHeight(25) | 197 | + .fontSize($r('app.float.font_size_14')) |
| 198 | + .lineHeight(21) | ||
| 199 | .fontColor($r('app.color.color_222222')) | 199 | .fontColor($r('app.color.color_222222')) |
| 200 | .fontWeight(600)// .maxLines(2) | 200 | .fontWeight(600)// .maxLines(2) |
| 201 | .margin({ | 201 | .margin({ |
| @@ -205,9 +205,10 @@ export struct ENewspaperListDialog { | @@ -205,9 +205,10 @@ export struct ENewspaperListDialog { | ||
| 205 | 205 | ||
| 206 | if (positionItem.title) { | 206 | if (positionItem.title) { |
| 207 | Text(positionItem.title) | 207 | Text(positionItem.title) |
| 208 | - .fontSize($r('app.float.font_size_16')) | 208 | + .fontSize($r('app.float.font_size_17')) |
| 209 | .fontColor($r('app.color.color_222222')) | 209 | .fontColor($r('app.color.color_222222')) |
| 210 | .fontWeight(600) | 210 | .fontWeight(600) |
| 211 | + .lineHeight(25) | ||
| 211 | .margin({ | 212 | .margin({ |
| 212 | bottom: 8 | 213 | bottom: 8 |
| 213 | }) | 214 | }) |
-
Please register or login to post a comment