mixin.js 497 B

123456789101112131415161718
  1. export const systemInfo = {
  2. data: () => ({
  3. statusBarHeight: 0,
  4. navigationBarHeight: 0,
  5. navHeight: 0,
  6. windowHeight: 0, // 可使用窗口高度
  7. }),
  8. methods: {
  9. // 获取设备信息
  10. getSystemInfo() {
  11. this.statusBarHeight = getApp().globalData.statusBarHeight
  12. this.navigationBarHeight = getApp().globalData.navigationBarHeight
  13. this.windowHeight = uni.getSystemInfoSync().windowHeight
  14. this.navHeight = getApp().globalData.navHeight
  15. },
  16. },
  17. }