吉安感知网项目-前端
shuishen
2026-01-17 86c2d61ba9d33f1886cfc904dcaf17f033e4c80a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import request from '@/axios'
 
/**
 * @description: 获取地址搜索结果
 * @param {*} data :{
 *  keyworld:string 搜索关键词
 * }
 * @return {*} Promise
 */
export const getPlace = (data) => {
  return request({
    url: `/webservice/address/getPlace`,
    method: 'post',
    data
  })
}
/**
 * @description: 获取空域详情 吉安项目
 * @param {*} data :{
 *  id:string 空域id
 * }
 * @return {*} Promise
 */
export const getAirspaceDetail = (data) => {
  return request({
    url: `/webservice/flightAirspace/pageInfo`,
    method: 'post',
    data
  })
}