//让content向上滚动 软键盘的高度@ViewChild(Content) content: Content;
scrollTo(){ window.addEventListener('native.keyboardshow',(e:any) =>{ this.content.scrollTo(0,e.keyboardHeight); });
}