1234567891011121314151617181920212223242526272829 |
- app.controller('StdEnrolDocCtrl', [ '$rootScope', '$scope', '$stateParams', '$timeout', function($rootScope, $scope, $stateParams, $timeout) {
- if ($stateParams == undefined || $stateParams.enrol_id == undefined) {
- $.alert('参数错误,无法获取报考详细信息', function() {
- $rootScope.goWechat();
- });
- return;
- }
- $scope.getEnrol = function() {
- $rootScope.ajaxRequest({
- url : '../enrol/std/enrol/find.htm',
- data : {
- enrol_id : $stateParams.enrol_id,
- aspect_batch : 1
- }
- }, function(response) {
- $scope.EnrolMap = response.map.StdEnrol;
- });
- }
- if( $stateParams.enrol_id!='null' )
- $scope.getEnrol();
-
- $scope.goDownload = function(url) {
- $('#down_url').attr('href', url);
- document.getElementById("down_url").click();
- }
-
-
- } ])
|