Ion-List' underlapping'离子片和离子导航

时间:2018-02-07 13:28:20

标签: html typescript ionic-framework

在我的主页上,我有一个离子列表,有时候(是的,不是每次都有),当我在此列表中选择一个对象或者通过" this.app.getRootNav进入注册页面时).push(" ClienteCadastroPage")",并在registerPage ou descriptionPage中选择一个输入,并使用" this.navCtrl.pop();"为了回归,我的离子列表位于Ion-Tab和Ion-nav

之下

1- Ion-List:enter image description here

2 - 选择项目后,我会触摸任何输入 enter image description here

3-选择复出或保存后 enter image description here

正如你在上一张照片中看到的那样,离子列表属于其他元素。

1 个答案:

答案 0 :(得分:0)

我只需要在方法ionViewDidEnter()上加载页面时调整组件大小:

代码:

@ViewChild(Content) content: Content;

ionViewDidEnter() {
  Utils.closeMenus(this.menuCtrl);
  this.update();
}

update(){    
  this.content.resize();
}