| 12345678910111213141516171819 |
- <template>
- <view class="content">
- <view :style="{ paddingTop: statusBarHeight + 'px' }"></view>
- <image class="w" style="height: 900px;"
- src="/static/image/source/byjq_.png"></image>
- </view>
- </template>
- <script setup>
- import { ref, onMounted } from "vue";
- import { onShow } from "@dcloudio/uni-app";
- var statusBarHeight = uni.getStorageSync('statusBarHeight')
- </script>
- <style lang="scss" scoped>
- .content{
- background-color: #a9d4ff;
- }
- </style>
|