Showing
1 changed file
with
7 additions
and
4 deletions
| @@ -11,7 +11,7 @@ export struct ChartItemCompereComponent { | @@ -11,7 +11,7 @@ export struct ChartItemCompereComponent { | ||
| 11 | ListItem() { | 11 | ListItem() { |
| 12 | Column() { | 12 | Column() { |
| 13 | Row() { | 13 | Row() { |
| 14 | - Image($r('app.media.icon_live_status_running')) | 14 | + Image($r('app.media.default_head')) |
| 15 | .borderRadius(10) | 15 | .borderRadius(10) |
| 16 | .width(20) | 16 | .width(20) |
| 17 | .height(20) | 17 | .height(20) |
| @@ -24,13 +24,15 @@ export struct ChartItemCompereComponent { | @@ -24,13 +24,15 @@ export struct ChartItemCompereComponent { | ||
| 24 | 24 | ||
| 25 | Text(' 主持人 ') | 25 | Text(' 主持人 ') |
| 26 | .fontSize(11) | 26 | .fontSize(11) |
| 27 | - .backgroundColor('808562') | 27 | + .backgroundColor('#FFFFC63F') |
| 28 | .fontColor('#FFFFFFFF') | 28 | .fontColor('#FFFFFFFF') |
| 29 | .padding({ top: 2, bottom: 2, left: 4, right: 4 }) | 29 | .padding({ top: 2, bottom: 2, left: 4, right: 4 }) |
| 30 | .borderRadius(4) | 30 | .borderRadius(4) |
| 31 | - }.margin({ bottom: 8 }) | 31 | + } |
| 32 | + .margin({ bottom: 8 }) | ||
| 33 | + .justifyContent(FlexAlign.Start) | ||
| 32 | 34 | ||
| 33 | - Text(this.liveDetailsBean.newIntroduction).lineHeight(22) | 35 | + Text(this.liveDetailsBean.newIntroduction).lineHeight(22).fontColor('#FFFFFFFF').fontSize(14) |
| 34 | } | 36 | } |
| 35 | .backgroundColor('#4D000000') | 37 | .backgroundColor('#4D000000') |
| 36 | .borderRadius(3) | 38 | .borderRadius(3) |
| @@ -41,6 +43,7 @@ export struct ChartItemCompereComponent { | @@ -41,6 +43,7 @@ export struct ChartItemCompereComponent { | ||
| 41 | right: 8 | 43 | right: 8 |
| 42 | }) | 44 | }) |
| 43 | .margin({ left: 16, bottom: 4 }) | 45 | .margin({ left: 16, bottom: 4 }) |
| 46 | + .alignItems(HorizontalAlign.Start) | ||
| 44 | } | 47 | } |
| 45 | 48 | ||
| 46 | } | 49 | } |
-
Please register or login to post a comment