Browse Source

全局定位问题处理

郭宇琦 1 week ago
parent
commit
1717a7ee19
3 changed files with 9 additions and 5 deletions
  1. 1 0
      main.js
  2. 4 2
      mixin/index.js
  3. 4 3
      pages/service/service.vue

+ 1 - 0
main.js

@@ -22,6 +22,7 @@ uni.addInterceptor('request', {
 	}
 });
 import Vue from 'vue';
+
 Vue.mixin(Mixin);
 Vue.mixin(mixins);
 Vue.config.productionTip = false;

+ 4 - 2
mixin/index.js

@@ -17,14 +17,16 @@ export default {
 	  popupControlShow:false
     };
   },
-  onload(){
+  onLoad(){
 	 this.myLocation = getUserCurrentLocation()
-	 this.myLocation = this.$location()
   },
    mounted(){
   	  this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
   },
   methods: {
+	  async locationMiXin(){
+		   this.myLocation = await this.$location()
+	  },
 		tapOpenControl(e){
 			console.log(111);
 			const _carOnline=uni.getStorageSync('car_info').online!=0 //在线

+ 4 - 3
pages/service/service.vue

@@ -16,7 +16,7 @@
 
 		<!-- #ifdef APP -->
 		<googleMap keyId="1" width="100%" height='calc(50vh - 0rpx)' @changMarkertap="changMarkertap"
-			v-if="myLocation.latitude" :mapData='markers' :myLocation='myLocation'></googleMap>
+			v-if="myLocation.latitude" :mapData='markers' :myLocations='myLocation'></googleMap>
 		<!-- #endif -->
 
 		<!-- 地图控件 -->
@@ -143,11 +143,12 @@
 		 */
 		onLoad: function(options) {
 			this.loadModelType();
-			
+			console.log(this.myLocation)
+			this.locationFn()
 		},
 		
 		onShow() {
-			this.locationFn()
+			
 		},
 
 		methods: {