zhanghui 1 年之前
父節點
當前提交
4256bd3710
共有 2 個文件被更改,包括 19 次插入54 次删除
  1. 3 3
      manifest.json
  2. 16 51
      pages/index/diy/index_mall.vue

+ 3 - 3
manifest.json

@@ -161,8 +161,8 @@
 	},
 	"quickapp": {},
 	"mp-weixin": {
-		"appid": "wx932f9873f2dc5655",
-		"requiredPrivateInfos": ["getLocation"],
+		"appid": "wxf6dd733a0a8f0619",
+		"requiredPrivateInfos": ["getLocation", "chooseLocation"],
 		"setting": {
 			"urlCheck": false,
 			"minified": true,
@@ -222,4 +222,4 @@
 	},
 	"_spaceID": "679f0930-8f60-425c-9033-8c135f397ea5",
 	"vueVersion": "2"
-}
+}

+ 16 - 51
pages/index/diy/index_mall.vue

@@ -84,20 +84,8 @@
 				</button>
 			</view>
 		</u-popup>
-		<u-popup :show="showMap" mode="center" @close="showMap = false" @open="open">
-			<view class="popup flex-col justify-center ">
 
-				<view class="map1_box flex-row justify-center">
-					<map id="map1" class="map" :latitude="markers[0].latitude" :longitude="markers[0].longitude" :markers="markers"
-						@regionchange="regionChange">
-					</map>
-				</view>
-				<view class="btn_box flex-row justify-center">
-					<u-button @click="closePopup">取消</u-button>
-					<u-button @click="closePopup">确定</u-button>
-				</view>
-			</view>
-		</u-popup>
+
 	</view>
 </template>
 
@@ -198,7 +186,9 @@ export default {
 
 	},
 	onShow () {
-
+		let sysInfo=uni.getSystemInfoSync();
+		console.log("设备信息")
+		console.log(sysInfo)
 	},
 	updated () {
 
@@ -213,46 +203,21 @@ export default {
 		}
 	},
 	methods: {
-		/**
-		 * 地图点击事件 定位不正确,原因未知,先不用
-		 * @param e
-		 */
-		// tap(e){
-		// 	console.log(e)
-		// 	this.markers[0].latitude= e.detail.latitude;
-		// 	this.markers[0].latitude= e.detail.latitude;
-		//
-		// },
-		/**
-		 * 地图拖动事件
-		 * @param e
-		 */
-		regionChange (e) {
-			this.mapContext = uni.createMapContext("map1", this);
-			this.mapContext.getCenterLocation({
-				type: 'gcj02',
+
+		changeAddress () {
+			uni.chooseLocation({
+				latitude: this.markers[0].latitude || '', /* 纬度 */
+				longitude: this.markers[0].longitude || '', /* 经度 */
 				success: (res) => {
-					this.markers[0].longitude = res.longitude;
+					console.log(res)
 					this.markers[0].latitude = res.latitude;
-					getAddress(this.markers[0].longitude, this.markers[0].latitude).then(res => {
-						uni.setStorageSync('user_longitude', this.markers[0].longitude);
-						uni.setStorageSync('user_latitude', this.markers[0].latitude);
-						console.log(res)
-						this.markers[0].label.content = res.result.address_reference.landmark_l2.title
-					});
+					this.markers[0].longitude =res.longitude;
+					this.markers[0].label.content = res.name;
+				},
+				fail: function (err) {
+					console.log(err)
 				}
-			});
-
-
-		},
-
-
-		closePopup () {
-			this.showMap = false
-		},
-
-		changeAddress () {
-			this.showMap = true
+			})
 		},
 		// 通过自带的方法获取到当前的经纬度,调用方法获取到地址获取到地址的中文信息
 		getCurrentLocation () {