src/api/platform/point.js
@@ -70,3 +70,34 @@ params: param }) } // 导出 export function exportData(param) { return request({ url: '/yw-point/export', method: 'get', params: param, responseType: 'blob' }) } // 导入 export function importData(data) { return request({ url: '/yw-point/import', method: 'post', data: data, headers: { 'Content-Type': 'multipart/form-data' }, timeout: 150000 }) } // 根据单位id查找合同 export function timeRange(unitId) { return request({ url: '/system/contract/time/' + unitId, method: 'get' }) }