Newer
Older
DH_Apicture / src / views / pictureOnMap / page / PublicOpinionAnalysis / components / nowSize.js
@zhangqy zhangqy 28 days ago 173 bytes first commit
//echar自适应设置
export function nowSize(val, initWidth) {
  let nowClientWidth = document.documentElement.clientWidth;
  return val * (nowClientWidth / initWidth);
}