This commit is contained in:
2023-05-12 18:10:29 +08:00
parent e94a491162
commit 37d0be9b23
217 changed files with 4004 additions and 614 deletions

View File

@ -10,3 +10,36 @@ export function getSpore(query) {
}
export function getfindAllSoil(query) {
return request({
url: 'equipment/findAllSoil',
method: 'get',
params: query
})
}
export function getinsect(query) {
return request({
url: 'equipment/findAllDetectionLights',
method: 'get',
params: query
})
}
export function getsporeEquipment(query) { //孢子设备
return request({
url: 'equipment/sporeEquipment',
method: 'get',
params: query
})
}
export function detectionLightsEquipment(query) { //虫子设备
return request({
url: 'equipment/detectionLightsEquipment',
method: 'get',
params: query
})
}