ionic中隐藏tabs(tabs-item-hide)

1.tabs页面

...

2.跳转后页面


..

3. 指令

.directive('hideTabs',function($rootScope){

    return {

        restrict:'AE',

        link:function($scope){

            $rootScope.hideTabs = 'tabs-item-hide';

            $scope.$on('$destroy',function(){

                $rootScope.hideTabs = ' ';

            })

        }

    }

}

你可能感兴趣的:(ionic)