12345678910111213141516171819 |
- angular.module('push')
- .controller('memberRightExplainCtrl', function ($scope) {
- if($scope.app){
- $scope.setStatusBar(0);
- }
- var activity = ['level', 'right'];
- $scope.act = activity[0];
- //切换到对应页面
- $scope.changeAct = function (num) {
- //获取关注/粉丝列表(访客列表暂时不做)0关注,1粉丝,2访客
- if (num == 0) {
- //切换到对应页面
- $scope.act = activity[num];
- } else if (num == 1) {
- //切换到对应页面
- $scope.act = activity[num];
- }
- }
- });
|