import request from '@/utils/request' import { URL } from '@/config' /** * 获取百度地图输入点提示词 * @author Seven * @data 2025-3-5 * @param { * query: value, //关键词 * region: this.citys[0], //城市名 * city_limit: true, //指定的区域的返回结果 * ret_coordtype: "gcj02ll", //坐标类型 1(WGS84ll即GPS经纬度)2(GCJ02ll即国测局经纬度坐标) 3(BD09ll即百度经纬度坐标) 4(BD09mc即百度米制坐标) *} * @returns { query,region } * @see https://mall.gpxscs.cn/mobile/shop/merch/baidu/place/v2/suggestion */ export function getBaiduSuggestion(params) { return request({ url: URL.baidu.getBaiduSuggestion, method: 'get', params, }) }