app.controller('VoideResultCtrl', [ '$rootScope', '$scope', '$stateParams', '$timeout', function($rootScope, $scope, $stateParams, $timeout) { $scope.showcheckin=false; if ($stateParams == undefined || $stateParams.enrol_id == undefined) { $.alert('参数错误,无法获取报考详细信息', function() { $rootScope.goWechat(); }); return; } $scope.getEnrol = function(autopay) { $rootScope.ajaxRequest({ url : '../enrol/std/enrol/find.htm', data : { enrol_id : $stateParams.enrol_id, aspect_batch : 1 } }, function(response) { $scope.EnrolMap = response.map; }); } $scope.getEnrol (); } ])