baoYangJiQiao.vue 458 B

12345678910111213141516171819
  1. <template>
  2. <view class="content">
  3. <view :style="{ paddingTop: statusBarHeight + 'px' }"></view>
  4. <image class="w" style="height: 900px;"
  5. src="/static/image/source/byjq_.png"></image>
  6. </view>
  7. </template>
  8. <script setup>
  9. import { ref, onMounted } from "vue";
  10. import { onShow } from "@dcloudio/uni-app";
  11. var statusBarHeight = uni.getStorageSync('statusBarHeight')
  12. </script>
  13. <style lang="scss" scoped>
  14. .content{
  15. background-color: #a9d4ff;
  16. }
  17. </style>