DetailPlayLivePage.ets
707 Bytes
import { BottomComponent } from '../widgets/details/BottomComponent';
import { TabComponent } from '../widgets/details/TabComponent';
import { TopPlayComponent } from '../widgets/details/video/TopPlayComponet';
@Entry
@Component
export struct DetailPlayLivePage {
TAG: string = 'DetailPlayLivePage';
@State playUrl:string=''
aboutToAppear(): void {
}
build() {
Column() {
TopPlayComponent({playUrl:this.playUrl})
TabComponent()
BottomComponent()
}
.height('100%')
.width('100%')
}
onPageShow(): void {
this.playUrl='https://rmrbcmsonline.peopleapp.com/upload/rmh/video/mp4/202404/1712667051b573b0f3a7a22375.mp4'
}
aboutToDisappear(): void {
}
}