indexAnalysisDetail.js 501 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12
// 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());
        }
    };
}]);