index.ts 459 B

1234567891011121314151617181920212223
  1. import { globalState } from './state/index'
  2. /**
  3. * 保存系统信息
  4. */
  5. export function setSystemInfo(): void {
  6. // 获取系统信息
  7. wx.getSystemInfo({
  8. success: (res) => {
  9. globalState.setItem('systemInfo', {
  10. statusBarHeight: res.statusBarHeight
  11. })
  12. }
  13. })
  14. }
  15. /**
  16. * 获取系统状态栏高度
  17. */
  18. export function getStatusBarHeight(): number {
  19. return globalState.getItem('systemInfo').statusBarHeight
  20. }