QualityCommentsPage.ets
606 Bytes
import { WindowModel } from 'wdKit/Index';
import { TrackConstants } from 'wdTracking/Index';
import { QualityCommentsComponent } from '../comment/view/QualityCommentsComponent';
@Entry
@Component
struct QualityCommentsPage {
@Provide pageName: string = TrackConstants.PageName.Best_Comment
@Provide pageId: string = TrackConstants.PageName.Best_Comment
onPageShow(): void {
// WindowModel.shared.setWindowLayoutFullScreen(true)
}
onPageHide(): void {
// WindowModel.shared.setWindowLayoutFullScreen(false)
}
build() {
Column() {
QualityCommentsComponent();
}
}
}