This commit is contained in:
2023-06-06 10:46:36 +08:00
parent 44bdc44559
commit baf444b013
279 changed files with 15825 additions and 2763 deletions

View File

@ -1,7 +1,7 @@
import request from '@/utils/request'
export function getSpore(query) {
export function getSpore(query) { //孢子查询数据
return request({
url: 'equipment/findAllSpore',
method: 'get',
@ -10,7 +10,7 @@ export function getSpore(query) {
}
export function getfindAllSoil(query) {
export function getfindAllSoil(query) { //土壤查询数据
return request({
url: 'equipment/findAllSoil',
method: 'get',
@ -18,7 +18,7 @@ export function getfindAllSoil(query) {
})
}
export function getinsect(query) {
export function getinsect(query) { //虫情询数据
return request({
url: 'equipment/findAllDetectionLights',
method: 'get',
@ -72,3 +72,21 @@ export function geteqLightEquipmentCondition(query) { //虫情设备信息
params: query
})
}
export function getdeviceNumber(query) { //全部设备列表
return request({
url: 'equipment/deviceNumber',
method: 'get',
params: query
})
}
export function getsiteNumber(query) { //站点标号
return request({
url: 'equipment/siteNumber',
method: 'get',
params: query
})
}