Files
goldmountain/WebRoot/js/controller/ReportListController.js

7 lines
196 B
JavaScript
Raw Normal View History

2015-11-24 22:57:40 +08:00
app.controller("ReportListController", function($scope, $http) {
$http.get("http://localhost/report/reportList").success(function(response) {
$scope.reportList = response.reportList;
});
});