ionic中二级页面隐藏tabs(tabs-item-hide)

  • 2017-06-20
  • 0
  • 0
当我们在文章页面的时候我们不想显示底部的tab,或者我们就有一些页面不想显示底部的tab 我们怎么实现呢
1.tabs页面
<ion-tabs class=”tabs-icon-top tabs-positie {{hideTabs}}>
</ion-tabs>
2.跳转后页面
<ion-view hide-tabs>
..
</ion-view>
3. 指令
.directive(‘hideTabs’,function($rootScope){
    return {
        restrict:’AE’,
        link:function($scope){
            $rootScope.hideTabs = ‘tabs-item-hide’;
            $scope.$on(‘$destroy’,function(){
                $rootScope.hideTabs = ‘ ‘;
            })
        }
    }
}

评论

还没有任何评论,你来说两句吧

你必须 登录 才能发表评论.