王士厅

fix: 修复沉浸式视频、动态视频式详情页点击号主头像正常进入号主的主页

import measure from '@ohos.measure'
import { ContentDetailDTO } from 'wdBean/Index'
import { ContentDetailDTO, Params } from 'wdBean/Index'
import { DetailDialog } from './DetailDialog'
import { DateTimeUtils } from 'wdKit'
import { DateTimeUtils, ToastUtils } from 'wdKit'
import { WDRouterPage, WDRouterRule } from 'wdRouter'
const TAG = 'PlayerTitleView';
... ... @@ -174,7 +175,22 @@ export struct PlayerTitleView {
if (this.getIcon()) {
Image(this.getIcon()).height(11).margin({ left: 4, top: 3 })
}
}.margin({ bottom: 8 })
}
.zIndex(100)
.margin({ bottom: 8 })
.onClick(() => {
// console.log(TAG, '点击号主@信息')
// 跳转到号主页
if (this.contentDetailData.rmhInfo?.cnMainControl === 1) {
const params: Params = {
creatorId: this.contentDetailData.rmhInfo.rmhId,
pageID: ''
}
WDRouterRule.jumpWithPage(WDRouterPage.peopleShipHomePage, params)
} else {
ToastUtils.showToast("暂时无法查看该创作者主页", 2000);
}
})
}
... ...