张善主

fix(19312):UI还原问题-【uat】进入“竖屏直播间-测试” 大V图标未显示,看图

... ... @@ -40,6 +40,7 @@ export struct LiveFollowComponent {
bottomLeft: 90
})
Row() {
Stack({alignContent: Alignment.Bottom}){
//号主头像
Image(this.rmhInfo.rmhHeadUrl)
.alt($r('app.media.icon_default_head_mater'))
... ... @@ -56,6 +57,17 @@ export struct LiveFollowComponent {
WDRouterRule.jumpWithPage(WDRouterPage.peopleShipHomePage, params)
}
})
if(this.contentDetailData.rmhInfo?.authIcon){
Row(){
Image(this.contentDetailData.rmhInfo?.authIcon)
.width(10)
.height(10)
.objectFit(ImageFit.Cover)
}.width(24)
.justifyContent(FlexAlign.End)
}
}.width(24).height(24)
//号主名称
Text(this.rmhInfo.rmhName)
.fontColor(Color.White)
... ...