Showing
3 changed files
with
10 additions
and
7 deletions
| @@ -368,8 +368,8 @@ export struct MorningEveningPaperComponent { | @@ -368,8 +368,8 @@ export struct MorningEveningPaperComponent { | ||
| 368 | .objectFit(ImageFit.Contain) | 368 | .objectFit(ImageFit.Contain) |
| 369 | 369 | ||
| 370 | Image(this.currentStatus === PlayerConstants.STATUS_START ? $r("app.media.icon_audio_pause_svg") : $r("app.media.icon_audio_playing_svg")) | 370 | Image(this.currentStatus === PlayerConstants.STATUS_START ? $r("app.media.icon_audio_pause_svg") : $r("app.media.icon_audio_playing_svg")) |
| 371 | - .width(24) | ||
| 372 | - .height(24) | 371 | + .width(20) |
| 372 | + .height(20) | ||
| 373 | .margin({ left: 10 })// .alignSelf(ItemAlign.Center) | 373 | .margin({ left: 10 })// .alignSelf(ItemAlign.Center) |
| 374 | .objectFit(ImageFit.Contain) | 374 | .objectFit(ImageFit.Contain) |
| 375 | .onClick(() => { | 375 | .onClick(() => { |
| @@ -80,7 +80,7 @@ export struct topicInfoView { | @@ -80,7 +80,7 @@ export struct topicInfoView { | ||
| 80 | ProcessUtils.processPage(contentDTO) | 80 | ProcessUtils.processPage(contentDTO) |
| 81 | 81 | ||
| 82 | }) | 82 | }) |
| 83 | - .width(70) | 83 | + .width(73) |
| 84 | .alignRules({ | 84 | .alignRules({ |
| 85 | left: { anchor: "__container__", align: HorizontalAlign.Start }, | 85 | left: { anchor: "__container__", align: HorizontalAlign.Start }, |
| 86 | bottom: { anchor: "__container__", align: VerticalAlign.Bottom } | 86 | bottom: { anchor: "__container__", align: VerticalAlign.Bottom } |
| @@ -90,7 +90,7 @@ export struct topicInfoView { | @@ -90,7 +90,7 @@ export struct topicInfoView { | ||
| 90 | 90 | ||
| 91 | 91 | ||
| 92 | Row(){ | 92 | Row(){ |
| 93 | - CommentText({longMessage:this.frontLinkObject?.summary ?? "",fontSize:14,fontColor:'#CCFFFFFF',isMorningEveningPaper:true}) | 93 | + CommentText({longMessage:this.frontLinkObject?.summary ?? "",fontSize:14,fontColor:'#CCFFFFFF',isMorningEveningPaper:true,lineHeight:20}) |
| 94 | }.alignItems(VerticalAlign.Bottom) | 94 | }.alignItems(VerticalAlign.Bottom) |
| 95 | .alignRules({ | 95 | .alignRules({ |
| 96 | left: { anchor: "__container__", align: HorizontalAlign.Start }, | 96 | left: { anchor: "__container__", align: HorizontalAlign.Start }, |
| @@ -100,7 +100,8 @@ export struct topicInfoView { | @@ -100,7 +100,8 @@ export struct topicInfoView { | ||
| 100 | .id('txt_summary') | 100 | .id('txt_summary') |
| 101 | 101 | ||
| 102 | Text(this.frontLinkObject?.title ?? "") | 102 | Text(this.frontLinkObject?.title ?? "") |
| 103 | - .fontSize(20) | 103 | + .fontSize(24) |
| 104 | + .lineHeight(33) | ||
| 104 | .fontColor($r('app.color.white')) | 105 | .fontColor($r('app.color.white')) |
| 105 | .maxLines(2) | 106 | .maxLines(2) |
| 106 | .alignRules({ | 107 | .alignRules({ |
| @@ -431,7 +431,8 @@ export struct PaperSingleColumn999CardView { | @@ -431,7 +431,8 @@ export struct PaperSingleColumn999CardView { | ||
| 431 | Column() { | 431 | Column() { |
| 432 | Text(this.item?.newsTitle) | 432 | Text(this.item?.newsTitle) |
| 433 | .fontColor(this.isRead ? 0x848484 : '#222222') | 433 | .fontColor(this.isRead ? 0x848484 : '#222222') |
| 434 | - .fontSize(16) | 434 | + .fontSize(18) |
| 435 | + .lineHeight(25) | ||
| 435 | .fontWeight(FontWeight.Medium) | 436 | .fontWeight(FontWeight.Medium) |
| 436 | .alignSelf(ItemAlign.Start) | 437 | .alignSelf(ItemAlign.Start) |
| 437 | .maxLines(3) | 438 | .maxLines(3) |
| @@ -535,8 +536,9 @@ export struct PaperSingleColumn999CardView { | @@ -535,8 +536,9 @@ export struct PaperSingleColumn999CardView { | ||
| 535 | } | 536 | } |
| 536 | if (this.item?.newsSummary) { | 537 | if (this.item?.newsSummary) { |
| 537 | Text(this.item?.newsSummary) | 538 | Text(this.item?.newsSummary) |
| 538 | - .fontColor(this.isRead ? '#808080' : '#222222') | 539 | + .fontColor(this.isRead ? '#808080' : '#666666') |
| 539 | .fontSize(14) | 540 | .fontSize(14) |
| 541 | + .lineHeight(20) | ||
| 540 | .padding({ top: 10 }) | 542 | .padding({ top: 10 }) |
| 541 | .alignSelf(ItemAlign.Start) | 543 | .alignSelf(ItemAlign.Start) |
| 542 | .maxLines(3) | 544 | .maxLines(3) |
-
Please register or login to post a comment