uni.chooseLocation({
latitude: this.lat || '', //坐标
longitude: this.lng || '', //坐标
success: (res) => {
console.log(res)
this.lat = res.latitude;
this.lng = res.longitude;
this.location = res.name;
},
fail: function(err) {
console.log('取消按钮', err)
}
});
09-22
8375
