| | |
| | | </view> |
| | | <view class="flex" @click="changeCurrentAddress"> |
| | | <view> |
| | | <image style="width: 30rpx;height: 30rpx;" class="m-t-2" |
| | | <image style="width: 30rpx;height: 30rpx;margin-top: 6rpx;margin-right: 10rpx;" class="m-t-2" |
| | | src="https://hmy-flower.oss-cn-shanghai.aliyuncs.com/a2/a248385d4fe748ca81ee058ea5bf8c47icon-address.jpg"> |
| | | </image> |
| | | </view> |
| | |
| | | </view> |
| | | </view> |
| | | <view class="m-t-12 "> |
| | | <view class="desc-gray">我的收获地址</view> |
| | | <view class="desc-gray">我的收货地址</view> |
| | | |
| | | </view> |
| | | <no-data v-if="!list||list.length==0" style="width: 100%;"></no-data> |
| | |
| | | //表单选择了地址 |
| | | wx.chooseLocation({ |
| | | success: location => { |
| | | console.log('success loc', location) |
| | | console.log('success loc', location,source) |
| | | // address: "江苏省苏州市吴中区太湖东路288号" |
| | | // errMsg: "chooseLocation:ok" |
| | | // latitude: 31.26249 |
| | |
| | | // name: "苏州市吴中区人民政府" |
| | | if (source === 'form') { |
| | | // (location.address || '') + |
| | | that.submitForm.address = (location.name || '') |
| | | that.submitForm.address = (location.name || location.address || '') |
| | | that.submitForm.latitude = location.latitude || 0 |
| | | that.submitForm.longitude = location.longitude || 0 |
| | | } else if (source === 'input') { |
| | | // (location.address || '') + |
| | | // that.search_flow = (location.name || '') |
| | | that.$store.commit('setAddressDesc', (location.name || '')) |
| | | that.$store.commit('setAddressDesc', (location.name || location.address || '')) |
| | | that.$forceUpdate() |
| | | that.backpage() |
| | | } |
| | | |
| | | // if (!that.submitForm.province && location.provinceName) { |
| | |
| | | // }; |
| | | const { |
| | | code,data |
| | | } = that.$http.request('get', '/api/pub/customer/home/address/parse', { |
| | | } = await that.$http.request('get', '/api/pub/customer/home/address/parse', { |
| | | data: {}, |
| | | params: { |
| | | // https://apis.map.qq.com/ws/geocoder/v1/?location=39.984154,116.307490&key=[你的key]&get_poi=1 |
| | |
| | | }) |
| | | console.log('定位成功:', data); |
| | | if(data){ |
| | | var address = data.address || '' |
| | | var address = data.result&&data.result.address || '' |
| | | |
| | | that.$store.commit('setAddressDesc', (address || '')) |
| | | that.$forceUpdate() |
| | | |
| | | that.backpage() |
| | | |
| | | } |
| | | |
| | | |
| | | }, |
| | | fail: (err) => { |
| | | this.error = err; |
| | | that.error = err; |
| | | console.error('定位失败:', err); |
| | | }, |
| | | complete() { |
| | | this.$message.hideLoading() |
| | | that.$message.hideLoading() |
| | | } |
| | | }); |
| | | }, |