王士厅
... ... @@ -82,6 +82,8 @@ export struct InteractMComponent {
let contentDTO :ContentDTO = new ContentDTO();
contentDTO.objectType = this.messageModel.InteractMsubM.contentType
contentDTO.objectId = this.messageModel.InteractMsubM.contentId
contentDTO.relId = this.messageModel.InteractMsubM.contentRelId
contentDTO.relType = this.messageModel.InteractMsubM.contentRelType
ProcessUtils.processPage(contentDTO)
})
}
... ...
... ... @@ -117,7 +117,7 @@ export struct PlayerEndView {
.fontColor('#B2FFFFFF')
.padding({ top: 8 })
}
Blank().height(this.contentDetailData.rmhInfo == null ? 26:16)
Stack() {
Row() {
Column() {
... ... @@ -134,8 +134,7 @@ export struct PlayerEndView {
Text('观看人数').fontWeight(400).fontSize(12).fontColor(Color.White)
}
}
.padding({ top: this.contentDetailData.rmhInfo == null ? 26 : 16 })
Text('').width(1).height(32).margin({ left: 36, right: 36,top:this.contentDetailData.rmhInfo == null ? 26 : 16 }).backgroundColor('#33FFFFFF')
Text('').width(1).height(32).backgroundColor('#33FFFFFF')
}
if (this.contentDetailData.rmhInfo != null) {
Row() {
... ... @@ -149,6 +148,7 @@ export struct PlayerEndView {
left: 122,
right: 122
})
.height(42)
.backgroundColor(this.followStatus == '0' ? '#FFED2800' : '#CCCCCC')
.borderRadius(4)
.onClick(() => {
... ...