Files

17 lines
387 B
JavaScript
Raw Permalink Normal View History

2026-08-17 11:01:21 +08:00
/**
* 获取系统信息
* @param {boolean} [forceRefresh=false] 强制重新获取(折叠屏场景使用)
* @returns {Object}
*/
export function getSystemInfo() {
return uni.getSystemInfoSync()
}
/**
* 获取状态栏高度
* @param {boolean} [forceRefresh=false]
* @returns {number}
*/
export function getStatusBarHeight() {
return getSystemInfo().statusBarHeight || 0
}