linwenxin 2 veckor sedan
förälder
incheckning
1c514de33c
2 ändrade filer med 3 tillägg och 3 borttagningar
  1. 2 2
      src/common/utils/common.js
  2. 1 1
      src/common/utils/util.js

+ 2 - 2
src/common/utils/common.js

@@ -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,

+ 1 - 1
src/common/utils/util.js

@@ -1021,7 +1021,7 @@ export const wxConfig = function (configInfo, userInfo, cb) {
         })
 
         wx.ready(() => {
-          cb?.()
+          cb?.(wx)
           if (configInfo && userInfo) {
             wxShare({
               configInfo,