吉安感知网项目-前端
张含笑
2026-01-13 62c4f89a5db2f5594c782ef2b2bbb8941f63454f
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
  })
}