吉安感知网项目-前端
shuishen
2026-01-13 89afb4a7dde11292f4b34cb728bdc4f1860b1917
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '@/axios'
 
/**
 * @description: 获取地址搜索结果
 * @param {*} data :{
 *  keyworld:string 搜索关键词
 * }
 * @return {*} Promise
 */
export const getPlace = (data) => {
  return request({
    url: `/webservice/address/getPlace`,
    method: 'post',
    data
  })
}