zhanghui 1 年間 前
コミット
45313e48eb
1 ファイル変更7 行追加4 行削除
  1. 7 4
      pages/index/diy/index_mall.vue

+ 7 - 4
pages/index/diy/index_mall.vue

@@ -209,10 +209,13 @@ export default {
 				latitude: this.markers[0].latitude || '', /* 纬度 */
 				longitude: this.markers[0].longitude || '', /* 经度 */
 				success: (res) => {
-					console.log(res)
-					this.markers[0].latitude = res.latitude;
-					this.markers[0].longitude =res.longitude;
-					this.markers[0].label.content = res.name;
+					if (res.name){
+						this.markers[0].latitude = res.latitude;
+						this.markers[0].longitude =res.longitude;
+						this.markers[0].label.content = res.name;
+						uni.setStorageSync('user_longitude', res.longitude);
+						uni.setStorageSync('user_latitude', res.latitude);
+					}
 				},
 				fail: function (err) {
 					console.log(err)