c-top.vue 364 B

123456789101112131415161718192021222324
  1. <template>
  2. <view :style="{ paddingTop: BarHeight + 'px' }"></view>
  3. </template>
  4. <script>
  5. export default {
  6. name:"c-top",
  7. data() {
  8. return {
  9. BarHeight: 0
  10. };
  11. },
  12. mounted() {
  13. // #ifdef APP-PLUS
  14. let systemInfo = uni.getSystemInfoSync();
  15. this.BarHeight = systemInfo.statusBarHeight;
  16. // #endif
  17. }
  18. }
  19. </script>
  20. <style lang="scss">
  21. </style>