Showing
1 changed file
with
29 additions
and
0 deletions
| 1 | +import { BottomComponent } from '../widgets/details/BottomComponent'; | ||
| 2 | +import { TabComponent } from '../widgets/details/TabComponent'; | ||
| 3 | +import { TopPlayComponent } from '../widgets/details/video/TopPlayComponet'; | ||
| 4 | + | ||
| 5 | + | ||
| 6 | +@Component | ||
| 7 | +export struct DetailPlayHLivePage { | ||
| 8 | + aboutToAppear(): void { | ||
| 9 | + | ||
| 10 | + } | ||
| 11 | + | ||
| 12 | + build() { | ||
| 13 | + Column() { | ||
| 14 | + TopPlayComponent() | ||
| 15 | + TabComponent() | ||
| 16 | + BottomComponent() | ||
| 17 | + } | ||
| 18 | + .height('100%') | ||
| 19 | + .width('100%') | ||
| 20 | + } | ||
| 21 | + | ||
| 22 | + onPageShow(): void { | ||
| 23 | + | ||
| 24 | + } | ||
| 25 | + | ||
| 26 | + aboutToDisappear(): void { | ||
| 27 | + | ||
| 28 | + } | ||
| 29 | +} |
-
Please register or login to post a comment