let windows_info = uni.getWindowInfo()
let ww = windows_info.windowWidth
let hh = windows_info.windowHeight
// #ifdef APP
windows_info = plus.screen.getCurrentSize();
ww = windows_info.resolutionWidth
hh = windows_info.resolutionHeight
// #endif
console.log("窗口",windows_info)
uni.showModal({
title:'wh',
content:JSON.stringify(windows_info)
})