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

@ -40,7 +40,22 @@ export function getadministrative(query) {//村
}
export function getgarrison() {//镇的地图服务
return request({
url: 'http://121.36.229.60:9080/geoserver/shuzisannong/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=shuzisannong%3Ahuangdaoqu_town&maxFeatures=50&outputFormat=application%2Fjson',
url: 'http://139.199.98.175:9080/geoserver/shuzisannong/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=shuzisannong%3Ahuangdaoqu_town&maxFeatures=50&outputFormat=application%2Fjson',
method: 'get',
})
}
export function getlistDroughtsYear() {//获取年
return request({
url: 'equipment/listDroughtsYear',
method: 'get',
})
}
export function getlistDroughts(query) {//列表模式默认数据
return request({
url: 'equipment/listDroughts',
method: 'get',
params: query
})
}