张善主

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

... ... @@ -40,22 +40,34 @@ export struct LiveFollowComponent {
bottomLeft: 90
})
Row() {
//号主头像
Image(this.rmhInfo.rmhHeadUrl)
.alt($r('app.media.icon_default_head_mater'))
.width(24)
.height(24)
.borderRadius(90)
.onClick(() => {
// 跳转到号主页
if (this.contentDetailData.rmhInfo?.cnMainControl === 1) {
const params: Params = {
creatorId: this.contentDetailData.rmhInfo.rmhId,
pageID: ''
Stack({alignContent: Alignment.Bottom}){
//号主头像
Image(this.rmhInfo.rmhHeadUrl)
.alt($r('app.media.icon_default_head_mater'))
.width(24)
.height(24)
.borderRadius(90)
.onClick(() => {
// 跳转到号主页
if (this.contentDetailData.rmhInfo?.cnMainControl === 1) {
const params: Params = {
creatorId: this.contentDetailData.rmhInfo.rmhId,
pageID: ''
}
WDRouterRule.jumpWithPage(WDRouterPage.peopleShipHomePage, params)
}
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)
... ...