ionic ion-tabs底部栏隐藏

来源:互联网 发布:爱淘宝买东西返利多少 编辑:程序博客网 时间:2024/05/17 04:27




一个简单的二级页面,用了tabs-item-hide并封装了hide-tabs指令.但是底部菜单栏并没有隐藏


加入以下代码,成功隐藏:

   // 跳转前先加入:
  $scope.goBalanceChange=function(){
     $state.go('tab.balance_change');
     //隐藏底部tabs
     $ionicTabsDelegate.showBar(false);
  }

   //离开页面时显示
    $scope.$on('$ionicView.beforeLeave', function () {

 //显示底部tabs
          $ionicTabsDelegate.showBar(true);
      });

0 0