注释和地图相关接口

This commit is contained in:
2026-01-13 16:51:52 +08:00
parent 402f85d61f
commit 373be0527f

View File

@@ -3,12 +3,15 @@ import request from '@/common/api/request.js'
const url = '/account' const url = '/account'
//根据经纬度获取信息 //根据经纬度获取信息
export const APIgeocodelocation = (data) => { export const APIgeocodelocation = (data) => {
return request({ return new Promise((resove, reject) => {
url: url + '/user/geo/geocode', resove(null)
method: 'get',
data: data,
toast: false
}) })
// return request({
// url: url + '/user/geo/geocode',
// method: 'get',
// data: data,
// toast: false
// })
} }
//登录 //登录