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