enrol_list.js 418 B

123456789101112131415161718
  1. app.controller('StdEnrolListCtrl', [ '$rootScope', '$scope', function($rootScope, $scope) {
  2. $scope.getEnrolArray = function(){
  3. $rootScope.ajaxRequest({
  4. url : '../enrol/std/enrol/list.htm'
  5. }, function(response) {
  6. $scope.EnrolArray = response.array;
  7. });
  8. }
  9. $scope.getEnrolArray();
  10. $scope.goEnrol = function(enrol){
  11. $rootScope.goLocation('enrol/info/' + enrol.enrol_id + '/InActive');
  12. }
  13. } ])