dashboard
repositories
filestore
activity
search
login
ztzh
/
zttj-h5
中图智慧H5
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
评优项不按设置展示问题
xieb
2025-03-06
8b23471d428d7d0a6444726cb5c1603a8b3d4010
[ztzh/zttj-h5.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
}