xydm

Results 1 issues of xydm

const width = util.isPhone() ? document.body.clientWidth : 360; const height = util.isPhone() ? document.body.clientHeight : 600; 源码中判断是否为移动端时,条件取值反了,建议修改为: const width = util.isPhone() ? 360 : document.body.clientWidth; const height = util.isPhone() ?...