12345678910111213141516 |
- app.controller('StdReexamSearchInfoCtrl', [ '$rootScope', '$scope', '$stateParams', '$timeout', function($rootScope, $scope, $stateParams, $timeout) {
- $scope.getAspectStd = function() {
- $rootScope.ajaxRequest({
- url : '../enrol/std/reexam/get.htm',
- data : {
- std_id : $rootScope.ArtStdReg.std_id
- }
- }, function(response) {
- $scope.stdArr = response.array;
- });
- }
- $scope.getAspectStd();
- } ])
|