search_info.js 414 B

12345678910111213141516
  1. app.controller('StdReexamSearchInfoCtrl', [ '$rootScope', '$scope', '$stateParams', '$timeout', function($rootScope, $scope, $stateParams, $timeout) {
  2. $scope.getAspectStd = function() {
  3. $rootScope.ajaxRequest({
  4. url : '../enrol/std/reexam/get.htm',
  5. data : {
  6. std_id : $rootScope.ArtStdReg.std_id
  7. }
  8. }, function(response) {
  9. $scope.stdArr = response.array;
  10. });
  11. }
  12. $scope.getAspectStd();
  13. } ])