SubscribeMessagePage.ets 627 Bytes
import { SubscribeMessageComponent } from '../components/mine/message/subscribe/SubscribeMessageComponent'

const TAG = "SubscribeMessagePage"
//预约消息 页面
@Entry
@Component
struct SubscribeMessagePage {
  @State topSafeHeight: number = AppStorage.get<number>('topSafeHeight') || 0
  @State bottomSafeHeight: number = AppStorage.get<number>('bottomSafeHeight') || 0


  build() {
    Column(){
      Column(){
        SubscribeMessageComponent()
      }.height("100%")
      .width("100%")
    }.width("100%")
    .height("100%")
    .padding({top:px2vp(this.topSafeHeight),bottom:px2vp(this.bottomSafeHeight)})

  }
}