| 1234567891011121314151617181920212223 |
- import { globalState } from './state/index'
- /**
- * 保存系统信息
- */
- export function setSystemInfo(): void {
- // 获取系统信息
- wx.getSystemInfo({
- success: (res) => {
- globalState.setItem('systemInfo', {
- statusBarHeight: res.statusBarHeight
- })
- }
- })
- }
- /**
- * 获取系统状态栏高度
- */
- export function getStatusBarHeight(): number {
- return globalState.getItem('systemInfo').statusBarHeight
- }
|