123456789101112131415161718192021 |
- angular.module('push')
- .controller('memberComentCtrl', function ($scope, $stateParams, UserService, $ionicSlideBoxDelegate, $timeout) {
- if($scope.app){
- $scope.setStatusBar(0);
- }
- $scope.user = UserService.user.user;
- $scope.type = $stateParams.type;//会员种类:1普通用户 2VIP用户 3个性定制会员
- $timeout(function () {
- $ionicSlideBoxDelegate.$getByHandle("memberslide").slide($scope.type - 1, 10);
- }, 10);
- $scope.myActiveSlide = 1;
- $scope.goMemberRightExplain = function () {
- $scope.go("memberRightExplain");
- };
- $scope.goRightDetail = function (index) {
- $scope.go('rightDetails', {index: index});
- };
- });
|