瀏覽代碼

no message

linwenxin 1 周之前
父節點
當前提交
064aa2ab82
共有 1 個文件被更改,包括 24 次插入29 次删除
  1. 24 29
      src/common/utils/common.js

+ 24 - 29
src/common/utils/common.js

@@ -1,6 +1,5 @@
 import store from '@/store/index.js'
 import wx from 'weixin-js-sdk'
-import { getConfigInfo, wxConfig } from '@/common/utils/util'
 
 // 不含icon提示框
 export const toast = str => {
@@ -224,40 +223,36 @@ export const copy = val => {
 export const openLocation = (options = {}) => {
   if (!options) return
   const { lat, lng, name, address } = options
-  wxConfig(undefined, undefined, wx => {
-    wx.openLocation({
-      latitude: Number(lat),
-      longitude: Number(lng),
-      name,
-      address,
-      success: () => {
-        console.log('success')
-      }
-    })
+  wx.openLocation({
+    latitude: Number(lat),
+    longitude: Number(lng),
+    name,
+    address,
+    success: () => {
+      console.log('success')
+    }
   })
 }
 
 // 获取当前定位
 export const getLocation = async function () {
   return new Promise((resolve, reject) => {
-    wxConfig(undefined, undefined, wx => {
-      wx.getLocation({
-        type: 'gcj02',
-        isHighAccuracy: true,
-        geocode: true,
-        success: res => {
-          resolve(res)
-        },
-        fail: err => {
-          resolve({})
-          // reject('获取当前定位失败')
-          // modal({
-          //   title: '提示',
-          //   content: '获取当前定位失败',
-          //   showCancel: false
-          // }).then(() => {})
-        }
-      })
+    wx.getLocation({
+      type: 'gcj02',
+      isHighAccuracy: true,
+      geocode: true,
+      success: res => {
+        resolve(res)
+      },
+      fail: err => {
+        resolve({})
+        // reject('获取当前定位失败')
+        // modal({
+        //   title: '提示',
+        //   content: '获取当前定位失败',
+        //   showCancel: false
+        // }).then(() => {})
+      }
     })
   })
 }