我刚刚与 Ionic 合作了几天并坚持了下来。每次打开模式时,我都无法滑动侧边菜单,并且我在该模式中推送或设置根目录的任何页面也无法打开侧边菜单。
我有一个页面。- PedidoCadastroPage。
并调用此方法:
public abrirListagemProdutos() {
if (this.abaEscolhida == "PRODUTOS")
if (!this.formPedido.get('fk_id_cliente').value) {
this.exibirToastSelecionarCliente();
} else {
let modal = this.modalCtrl.create("ProdutoListagemPage", {
pedido: this.formPedido.value,
mapPedidoProduto: this.gerarMapPedidoProduto()
});
modal.onDidDismiss(pedidoProdutos => {
this.formPedido.get('pedidoProdutos').setValue(pedidoProdutos);
this.atualizarSomaTotalEQuantidadeDeItens();
});
modal.present();
}
}
并尝试打开侧面菜单,但没有任何反应。
当我关闭模式时,侧面菜单在 PedidoCadastroPage 中打开