dashboard
repositories
filestore
activity
search
login
main
/
srs-police-affairs
上饶市警务平台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
首页业务图层加载,及定位
shuishen
2023-04-01
23d464d4e6469a3628572026d5fda7fc56946b4e
[srs-police-affairs.git]
/
src
/
utils
/
fontSize.js
1
2
3
4
5
6
export function fontSize (size) {
let clientHeight = window.screen.availHeight
if (!clientHeight) return
let fontSize = size / 1080 * clientHeight
return fontSize
}