Showing
5 changed files
with
6 additions
and
5 deletions
| @@ -84,6 +84,7 @@ export struct CommentCustomDialog { | @@ -84,6 +84,7 @@ export struct CommentCustomDialog { | ||
| 84 | controller: this.textInputController, | 84 | controller: this.textInputController, |
| 85 | text: this.publishCommentModel.commentContent | 85 | text: this.publishCommentModel.commentContent |
| 86 | }) | 86 | }) |
| 87 | + .placeholderColor("#999999") | ||
| 87 | .id("textAreaId") | 88 | .id("textAreaId") |
| 88 | .defaultFocus(true) // 获取默认焦点 | 89 | .defaultFocus(true) // 获取默认焦点 |
| 89 | .enableKeyboardOnFocus(true) | 90 | .enableKeyboardOnFocus(true) |
| @@ -13,7 +13,7 @@ export struct AudioRowComponent { | @@ -13,7 +13,7 @@ export struct AudioRowComponent { | ||
| 13 | 13 | ||
| 14 | aboutToAppear(): void { | 14 | aboutToAppear(): void { |
| 15 | this.playerController.onCanplay = () => { | 15 | this.playerController.onCanplay = () => { |
| 16 | - this.playerController.play() | 16 | + // this.playerController.play() |
| 17 | } | 17 | } |
| 18 | this.playerController.onStatusChange = (status: number) => { | 18 | this.playerController.onStatusChange = (status: number) => { |
| 19 | if (status == PlayerConstants.STATUS_START) { | 19 | if (status == PlayerConstants.STATUS_START) { |
| @@ -148,7 +148,7 @@ export struct LiveHorizontalCardComponent { | @@ -148,7 +148,7 @@ export struct LiveHorizontalCardComponent { | ||
| 148 | } | 148 | } |
| 149 | }.justifyContent(FlexAlign.SpaceBetween) | 149 | }.justifyContent(FlexAlign.SpaceBetween) |
| 150 | // .padding({ left: 16, right: 16 }) | 150 | // .padding({ left: 16, right: 16 }) |
| 151 | - .margin({ top: 8, bottom: 8 }) | 151 | + .margin({ top: 8, bottom: 10 }) |
| 152 | .width(CommonConstants.FULL_WIDTH) | 152 | .width(CommonConstants.FULL_WIDTH) |
| 153 | 153 | ||
| 154 | // 多个 | 154 | // 多个 |
| @@ -264,7 +264,7 @@ export struct LiveHorizontalCardComponent { | @@ -264,7 +264,7 @@ export struct LiveHorizontalCardComponent { | ||
| 264 | left: 10, | 264 | left: 10, |
| 265 | right: 10, | 265 | right: 10, |
| 266 | top: $r('app.float.card_comp_pagePadding_tb'), | 266 | top: $r('app.float.card_comp_pagePadding_tb'), |
| 267 | - bottom: 6 | 267 | + bottom: $r('app.float.card_comp_pagePadding_tb') |
| 268 | }) | 268 | }) |
| 269 | .backgroundColor($r("app.color.white")) | 269 | .backgroundColor($r("app.color.white")) |
| 270 | } | 270 | } |
| @@ -20,7 +20,7 @@ export struct LiveHorizontalCardForOneComponent { | @@ -20,7 +20,7 @@ export struct LiveHorizontalCardForOneComponent { | ||
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | Text(this.contentDTO.newsTitle) | 22 | Text(this.contentDTO.newsTitle) |
| 23 | - .fontSize($r("app.float.font_size_14")) | 23 | + .fontSize(15) |
| 24 | .fontColor($r("app.color.color_212228")) | 24 | .fontColor($r("app.color.color_212228")) |
| 25 | .fontWeight(400) | 25 | .fontWeight(400) |
| 26 | .maxLines(1) | 26 | .maxLines(1) |
-
Please register or login to post a comment