隐藏tab 指令 hideTabs.js
angular.module('app.directives', [])
.directive('hideTabs', function ($rootScope) {
return {
restrict: 'A',
link: function (scope, element, attributes) {
scope.$watch(attributes.hideTabs, function (value) {
$rootScope.hideTabs = value;
});
scope.$on('$destroy', function () {
$rootScope.hideTabs = false;
});
}
};
});

浙公网安备 33010602011771号