|
@@ -224,7 +224,7 @@ export const copy = val => {
|
|
|
export const openLocation = (options = {}) => {
|
|
|
if (!options) return
|
|
|
const { lat, lng, name, address } = options
|
|
|
- wxConfig(undefined, undefined, () => {
|
|
|
+ wxConfig(undefined, undefined, wx => {
|
|
|
wx.openLocation({
|
|
|
latitude: Number(lat),
|
|
|
longitude: Number(lng),
|
|
@@ -240,7 +240,7 @@ export const openLocation = (options = {}) => {
|
|
|
// 获取当前定位
|
|
|
export const getLocation = async function () {
|
|
|
return new Promise((resolve, reject) => {
|
|
|
- wxConfig(undefined, undefined, () => {
|
|
|
+ wxConfig(undefined, undefined, wx => {
|
|
|
wx.getLocation({
|
|
|
type: 'gcj02',
|
|
|
isHighAccuracy: true,
|