guoshilong
2023-11-14 53a421cd1f905b8640e9d5c54e2f7de45947b201
1
2
3
4
5
6
7
8
import request, { CommonListResponse, IListWorkspaceResponse, IPage, IWorkspaceResponse } from '/@/api/http/request'
export const gaodeSearch = async function (params:any): Promise<IWorkspaceResponse<any>> {
  const url = 'map/amap/searchByKeyword'
  const result = await request.get(url, {
    params,
  })
  return result.data
}