citImportData.svc.js 760 Bytes
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// web service proxy for role
webservices.factory('citImportDataService', ['$http', 'apiConfig', function ($http, apiConfig) {
    'use strict';
    return {
        /***************************************批量数据导入服务(真) start**************************************************************/

        getCitDataImportLog: function (type) {
            return $http.get('/citImport/getCitDataImportLog?type=' + type, apiConfig.create());
        },
        /***************************************批量数据导入服务(真) end**************************************************************/

        // autoGeneTB: function () {
        //     return $http.post('/citImport/getCitDataImportLog', apiConfig.create());
        // },
    };
}]);