// web service proxy for role webservices.factory('indexAnalysisDetailService', ['$http', 'apiConfig', function ($http, apiConfig) { 'use strict'; return { getIndexAnalysisTreeList: function () { return $http.get('/indexAnalysisDetail/getIndexAnalysisTreeList', apiConfig.create()); }, getIndexAnalysisDropDownList: function () { return $http.get('/indexAnalysisDetail/getIndexAnalysisDropDownList', apiConfig.create()); } }; }]);