解决定位报错
This commit is contained in:
parent
bb1f7fb50b
commit
96e08ea235
@ -45,6 +45,7 @@
|
||||
import { getGeocoder } from '@/api/store.js';
|
||||
import { mapGetters } from 'vuex'
|
||||
import { Toast } from '../libs/uniApi';
|
||||
import Cache from '@/utils/cache';
|
||||
export default {
|
||||
props: {
|
||||
isSelectPlace: {
|
||||
@ -82,7 +83,7 @@
|
||||
watch: {
|
||||
location: {
|
||||
handler(newVal, oldVal) {
|
||||
this.street = newVal.address_component.street
|
||||
if(newVal.address_component?.street) this.street = newVal.address_component.street
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
@ -90,7 +91,7 @@
|
||||
created() {
|
||||
this.getBanner()
|
||||
this.Area()
|
||||
this.street = JSON.parse(this.location).address_component.street
|
||||
if(this.location.address_component?.street) this.street = this.location.address_component.street
|
||||
},
|
||||
methods: {
|
||||
swiperClick(item) {
|
||||
|
@ -213,6 +213,7 @@
|
||||
}
|
||||
},
|
||||
selfLocation() {
|
||||
const that = this
|
||||
uni.getLocation({
|
||||
type: 'gcj02',
|
||||
success: (res) => {
|
||||
@ -220,8 +221,8 @@
|
||||
latitude = res.latitude.toString();
|
||||
longitude = res.longitude.toString();
|
||||
getGeocoder({ lat: latitude, long: longitude }).then(res => {
|
||||
this.$store.commit('setLocation', res.data)
|
||||
this.street = res.data.address_component.street
|
||||
that.$store.commit('setLocation', res.data)
|
||||
that.street = res.data.address_component.street
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err,
|
||||
|
@ -135,7 +135,7 @@
|
||||
},
|
||||
methods: {
|
||||
getTownAndStoreId() {
|
||||
const LOCA = JSON.parse(this.location)
|
||||
const LOCA = this.location
|
||||
this.street_id = LOCA.address_reference.town.id
|
||||
this.getCloudShopMerId(this.street_id)
|
||||
this.town = LOCA.address_component.street ?? ''
|
||||
|
@ -1,19 +1,10 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
import { getUserInfo } from "../../api/user.js";
|
||||
import { LOGIN_STATUS, UID } from '../../config/cache';
|
||||
import Cache from '../../utils/cache';
|
||||
import { USER_INFO } from '../../config/cache';
|
||||
|
||||
const state = {
|
||||
location: Cache.get('LOCATION_DATA') || {},
|
||||
location: Cache.get('LOCATION_DATA',true) || {},
|
||||
token: Cache.get(LOGIN_STATUS) || null,
|
||||
backgroundColor: "#fff",
|
||||
userInfo: null,
|
||||
|
Loading…
x
Reference in New Issue
Block a user