citImportData.svc.js 751 Bytes
Newer Older
1 2 3 4 5 6 7 8
// 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());
9
        },
10 11
        /***************************************批量数据导入服务(真) end**************************************************************/

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