wangliang_wd

Merge branch 'main' of http://192.168.1.42/developOne/harmonyPool into main

* 'main' of http://192.168.1.42/developOne/harmonyPool:
  ref |> 直播间视频消息添加灰色蒙层,与安卓保持一致
  fix:to 评论遮盖页面导致无法交互
... ... @@ -127,6 +127,15 @@ export struct TabLiveItemComponent {
.objectFit(ImageFit.Cover)
.borderRadius(4)
.id('iv_id')
Row()
.backgroundColor('#30000000')
.borderRadius(4)
.alignRules({
left: { anchor: "iv_id", align: HorizontalAlign.Start },
right: { anchor: "iv_id", align: HorizontalAlign.End },
top: { anchor: "iv_id", align: VerticalAlign.Top },
bottom: { anchor: "iv_id", align: VerticalAlign.Bottom }
})
Stack() {
Row()
.borderRadius(90)
... ...
... ... @@ -29,18 +29,20 @@ export struct CommentDialogView {
}
build() {
CommentListDialogView({
showCommentList: this.innerShowComment,
contentDetailData: this.contentDetailData,
publishCommentModel: this.publishCommentModel,
pageInfo: this.fakePageInfo,
onClose: () => {
this.showCommentList = false
if (Number.parseInt(this.publishCommentModel.totalCommentNumer) > Number.parseInt(this.interactData.commentNum + "")) {
this.interactData.commentNum = Number.parseInt(this.publishCommentModel.totalCommentNumer)
}
},
onHeightDidChange: this.onHeightDidChange
})
if(this.innerShowComment){
CommentListDialogView({
showCommentList: this.innerShowComment,
contentDetailData: this.contentDetailData,
publishCommentModel: this.publishCommentModel,
pageInfo: this.fakePageInfo,
onClose: () => {
this.showCommentList = false
if (Number.parseInt(this.publishCommentModel.totalCommentNumer) > Number.parseInt(this.interactData.commentNum + "")) {
this.interactData.commentNum = Number.parseInt(this.publishCommentModel.totalCommentNumer)
}
},
onHeightDidChange: this.onHeightDidChange
})
}
}
}
\ No newline at end of file
... ...