| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <route lang="json5">
- {
- style: {
- navigationBarTitleText: '关于',
- },
- }
- </route>
- <template>
- <view
- class="bg-white overflow-hidden pt-2 px-4"
- :style="{ marginTop: safeAreaInsets?.top + 'px' }"
- >
- <view class="text-center text-3xl mt-4">关于页面</view>
- <view class="text-center text-3xl mt-8">
- 鸽友们好,我是
- <text class="text-red-500">菲鸽</text>
- </view>
- <view class="text-center mt-8">
- <wd-button type="primary">wot 组件库测试</wd-button>
- </view>
- <view class="text-center py-4">
- 当前平台是:
- <text class="text-red-500">{{ platform }}</text>
- </view>
- <view class="desc">测试设计稿样式</view>
- <view class="desc">设计稿是750px,css里面全部写rpx 即可</view>
- </view>
- </template>
- <script lang="ts" setup>
- // 获取屏幕边界到安全区域距离
- const { safeAreaInsets } = uni.getSystemInfoSync()
- const platform = __UNI_PLATFORM__
- const isH5 = __UNI_PLATFORM__ === 'h5'
- const isApp = __UNI_PLATFORM__ === 'app'
- const isMp = __UNI_PLATFORM__.startsWith('mp-')
- console.log(platform, isH5, isApp, isMp)
- </script>
- <style lang="scss" scoped>
- .desc {
- width: 700rpx;
- }
- </style>
|