uni.chooseLocation({
latitude: that.lat || that.$api.CFG.lat || '',
longitude: that.lng || that.$api.CFG.lng || '',
success(res) {
// console.log(res)
that.addr = res.name ? res.name + '-' + res.address : res.address;
that.lng = res.longitude;
that.lat = res.latitude;
},
fail(err) {
},
})