7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
|
|
app.controller("ReportListController", function($scope, $http) {
|
||
|
|
$http.get("http://localhost/report/reportList").success(function(response) {
|
||
|
|
|
||
|
|
$scope.reportList = response.reportList;
|
||
|
|
|
||
|
|
});
|
||
|
|
});
|