| | |
| | | }) |
| | | } |
| | | |
| | | // 设施和环境条件要求-电源稳定性删除 |
| | | export function deleteLaboratoryFacilityPowerStable(query) { |
| | | return request({ |
| | | url: '/fePowerStable/deleteLaboratoryFacilityPowerStable', |
| | | method: 'delete', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 电源稳定性-测定量 根据电源稳定性查询 |
| | | export function getFeMeasuredQuantityService(query) { |
| | | return request({ |
| | | url: "/fePowerStable/getFeMeasuredQuantityService", |
| | | method: "get", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | // 电源稳定性-测定量 导出 |
| | | export function exportFePowerStable(query) { |
| | | return request({ |
| | | url: "/fePowerStable/exportFePowerStable", |
| | | method: "get", |
| | | responseType: "blob", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | // 设施和环境条件要求-防雷检测查询 |
| | | export function getLightningProtectionDetection(query) { |
| | | return request({ |
| | | url: '/feLightningProtection/getLightningProtectionDetection', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 设施和环境条件要求-防雷检测新增/修改 |
| | | export function addLightningProtectionDetection(query) { |
| | | return request({ |
| | | url: '/feLightningProtection/addLightningProtectionDetection', |
| | | method: 'post', |
| | | data: query, |
| | | headers: { |
| | | 'Content-Type': 'multipart/form-data' // 必须设置为 multipart |
| | | } |
| | | }) |
| | | } |
| | | |
| | | // 设施和环境条件要求-防雷检测删除 |
| | | export function deleteLightningProtectionDetection(query) { |
| | | return request({ |
| | | url: '/feLightningProtection/deleteLightningProtectionDetection', |
| | | method: 'delete', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 设施和环境条件要求-防雷检测导出 |
| | | export function exportOfLightningProtectionDetection(query) { |
| | | return request({ |
| | | url: "/feLightningProtection/exportOfLightningProtectionDetection", |
| | | method: "get", |
| | | responseType: "blob", |
| | | params: query, |
| | | }); |
| | | } |
| | | |
| | | // 设施和环境条件要求-照度记录表-检测区域 查询 |
| | | export function getFeLightningProtection(query) { |
| | | return request({ |
| | | url: '/feIllumination/getFeLightningProtection', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 设施和环境条件要求-照度记录表-检测区域 新增/修改 |
| | | export function addFeLightningProtection(query) { |
| | | return request({ |
| | | url: '/feIllumination/addFeLightningProtection', |
| | | method: 'post', |
| | | data: query, |
| | | }) |
| | | } |
| | | |
| | | // 设施和环境条件要求-照度记录表-检测区域 删除 |
| | | export function deleteFeLightningProtection(query) { |
| | | return request({ |
| | | url: '/feIllumination/deleteFeLightningProtection', |
| | | method: 'delete', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 照度记录表-检测区域 根据照度记录查询 |
| | | export function getFeIlluminationDetectionArea(query) { |
| | | return request({ |
| | | url: '/feIllumination/getFeIlluminationDetectionArea', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 照度记录表-检测区域 删除 |
| | | export function deleteFeIlluminationDetectionArea(query) { |
| | | return request({ |
| | | url: '/feIllumination/deleteFeIlluminationDetectionArea', |
| | | method: 'delete', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 照度记录表-检测区域 导出 |
| | | export function exportFeIllumination(query) { |
| | | return request({ |
| | | url: "/feIllumination/exportFeIllumination", |
| | | method: "get", |
| | | responseType: "blob", |
| | | params: query, |
| | | }); |
| | | } |