operationlog.svc.js 338 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10
// web service proxy for operationlog
webservices.factory('operationLogService', ['$http', 'apiConfig', function ($http, apiConfig) {
    'use strict';
    return {
        getOrgLogList: function (model) {
            return $http.post('/operationlog/getorgloglist', model
                 , apiConfig.create());
        }
    };
}]);