Merge branch 'main' of http://192.168.1.42/developOne/harmonyPool into main
* 'main' of http://192.168.1.42/developOne/harmonyPool: fix: 19275 功能缺陷-【uat】进入直播,点击月度排行/乡村振兴,进入缺省页,返回,月度排行显示异常 fix: 19265 UI还原问题-【uat】进入评论卡,超长,没有省略 fix(19282): UI还原问题-【uat】进入横屏直播详情页,点击暂停后,再次点击播放,进度条消失,预期显示4秒后消失 fix(18285): UI还原问题-【uat】进入“在线中国拉流-浮动按钮”直播间,“直播加载中,请稍后重试” 文案未居中
Showing
4 changed files
with
12 additions
and
8 deletions
| @@ -121,7 +121,7 @@ export struct ZhSingleRow06 { | @@ -121,7 +121,7 @@ export struct ZhSingleRow06 { | ||
| 121 | .borderColor(0xf4f4f4) | 121 | .borderColor(0xf4f4f4) |
| 122 | .visibility(this.compDTO.operDataList[0]?.commentInfo?.commentPics ? Visibility.Visible : Visibility.None) | 122 | .visibility(this.compDTO.operDataList[0]?.commentInfo?.commentPics ? Visibility.Visible : Visibility.None) |
| 123 | 123 | ||
| 124 | - Row() { | 124 | + Flex({justifyContent: FlexAlign.Start}) { |
| 125 | Image($r('app.media.icon_clip')) | 125 | Image($r('app.media.icon_clip')) |
| 126 | .width(16) | 126 | .width(16) |
| 127 | .height(16) | 127 | .height(16) |
| @@ -132,7 +132,6 @@ export struct ZhSingleRow06 { | @@ -132,7 +132,6 @@ export struct ZhSingleRow06 { | ||
| 132 | .fontSize(14) | 132 | .fontSize(14) |
| 133 | .fontColor(0x666666) | 133 | .fontColor(0x666666) |
| 134 | } | 134 | } |
| 135 | - .justifyContent(FlexAlign.Start) | ||
| 136 | .width('100%') | 135 | .width('100%') |
| 137 | } | 136 | } |
| 138 | .width("100%") | 137 | .width("100%") |
| @@ -84,11 +84,11 @@ export struct LiveHorizontalCardComponent { | @@ -84,11 +84,11 @@ export struct LiveHorizontalCardComponent { | ||
| 84 | } | 84 | } |
| 85 | } as Params, | 85 | } as Params, |
| 86 | }; | 86 | }; |
| 87 | - this.compDTO.operDataList = [] | ||
| 88 | - console.log('LiveHorizontalCardComponent', JSON.stringify(this.compDTO)) | ||
| 89 | - console.log('LiveHorizontalCardComponent', this.compDTO.relId) | ||
| 90 | - console.log('LiveHorizontalCardComponent', this.compDTO.relType) | ||
| 91 | - console.log('LiveHorizontalCardComponent', JSON.stringify(taskAction)) | 87 | + // this.compDTO.operDataList = [] |
| 88 | + // console.log('LiveHorizontalCardComponent', JSON.stringify(this.compDTO)) | ||
| 89 | + // console.log('LiveHorizontalCardComponent', this.compDTO.relId) | ||
| 90 | + // console.log('LiveHorizontalCardComponent', this.compDTO.relType) | ||
| 91 | + // console.log('LiveHorizontalCardComponent', JSON.stringify(taskAction)) | ||
| 92 | WDRouterRule.jumpWithAction(taskAction) | 92 | WDRouterRule.jumpWithAction(taskAction) |
| 93 | } else { | 93 | } else { |
| 94 | // console.log('LiveHorizontalCardComponent', 'jumpToLiveMorePage') | 94 | // console.log('LiveHorizontalCardComponent', 'jumpToLiveMorePage') |
| @@ -56,7 +56,11 @@ export struct PlayUIComponent { | @@ -56,7 +56,11 @@ export struct PlayUIComponent { | ||
| 56 | this.playerController.onStatusChangeForPlayUIComponent = (status: number) => { | 56 | this.playerController.onStatusChangeForPlayUIComponent = (status: number) => { |
| 57 | if(1 == status){ | 57 | if(1 == status){ |
| 58 | this.ispause = false | 58 | this.ispause = false |
| 59 | - this.isMenuVisible = false | 59 | + if(this.isMenuVisible){ |
| 60 | + this.onChangeMenuVisible() | ||
| 61 | + }else{ | ||
| 62 | + this.isMenuVisible = true | ||
| 63 | + } | ||
| 60 | }else if(2 == status){ | 64 | }else if(2 == status){ |
| 61 | this.ispause = true | 65 | this.ispause = true |
| 62 | } | 66 | } |
| @@ -282,6 +282,7 @@ export struct TopPlayComponent { | @@ -282,6 +282,7 @@ export struct TopPlayComponent { | ||
| 282 | }) | 282 | }) |
| 283 | }.width('100%').visibility(this.isPlayerError ? Visibility.Visible : | 283 | }.width('100%').visibility(this.isPlayerError ? Visibility.Visible : |
| 284 | Visibility.None) | 284 | Visibility.None) |
| 285 | + .margin({top:40}) | ||
| 285 | 286 | ||
| 286 | } | 287 | } |
| 287 | .width('100%') | 288 | .width('100%') |
-
Please register or login to post a comment