// windowResize() {
// var originalHeight = document.documentElement.clientHeight || document.body.clientHeight;
// window.onresize = () => {
// var resizeHeight = document.documentElement.clientHeight || document.body.clientHeight //键盘弹起与隐藏都会引起窗口的高度发生变化
// if (resizeHeight - 0 < originalHeight - 0) { // 当软键盘弹起,在此处操作
// // do something
// } else { //当软键盘收起,在此处操作
// this.adjustAndroidInput()
// }
// }
// },
// /**修复andoird微信浏览器键盘收起后留空白的问题 */
// adjustAndroidInput() {
// setTimeout(() => {
// document.activeElement.scrollIntoViewIfNeeded();
// },10)
// },
console