解决定位报错
This commit is contained in:
parent
bb1f7fb50b
commit
96e08ea235
@ -45,6 +45,7 @@
|
|||||||
import { getGeocoder } from '@/api/store.js';
|
import { getGeocoder } from '@/api/store.js';
|
||||||
import { mapGetters } from 'vuex'
|
import { mapGetters } from 'vuex'
|
||||||
import { Toast } from '../libs/uniApi';
|
import { Toast } from '../libs/uniApi';
|
||||||
|
import Cache from '@/utils/cache';
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
isSelectPlace: {
|
isSelectPlace: {
|
||||||
@ -82,7 +83,7 @@
|
|||||||
watch: {
|
watch: {
|
||||||
location: {
|
location: {
|
||||||
handler(newVal, oldVal) {
|
handler(newVal, oldVal) {
|
||||||
this.street = newVal.address_component.street
|
if(newVal.address_component?.street) this.street = newVal.address_component.street
|
||||||
},
|
},
|
||||||
immediate: true
|
immediate: true
|
||||||
}
|
}
|
||||||
@ -90,7 +91,7 @@
|
|||||||
created() {
|
created() {
|
||||||
this.getBanner()
|
this.getBanner()
|
||||||
this.Area()
|
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: {
|
methods: {
|
||||||
swiperClick(item) {
|
swiperClick(item) {
|
||||||
|
@ -213,6 +213,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
selfLocation() {
|
selfLocation() {
|
||||||
|
const that = this
|
||||||
uni.getLocation({
|
uni.getLocation({
|
||||||
type: 'gcj02',
|
type: 'gcj02',
|
||||||
success: (res) => {
|
success: (res) => {
|
||||||
@ -220,8 +221,8 @@
|
|||||||
latitude = res.latitude.toString();
|
latitude = res.latitude.toString();
|
||||||
longitude = res.longitude.toString();
|
longitude = res.longitude.toString();
|
||||||
getGeocoder({ lat: latitude, long: longitude }).then(res => {
|
getGeocoder({ lat: latitude, long: longitude }).then(res => {
|
||||||
this.$store.commit('setLocation', res.data)
|
that.$store.commit('setLocation', res.data)
|
||||||
this.street = res.data.address_component.street
|
that.street = res.data.address_component.street
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: err,
|
title: err,
|
||||||
|
@ -135,7 +135,7 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getTownAndStoreId() {
|
getTownAndStoreId() {
|
||||||
const LOCA = JSON.parse(this.location)
|
const LOCA = this.location
|
||||||
this.street_id = LOCA.address_reference.town.id
|
this.street_id = LOCA.address_reference.town.id
|
||||||
this.getCloudShopMerId(this.street_id)
|
this.getCloudShopMerId(this.street_id)
|
||||||
this.town = LOCA.address_component.street ?? ''
|
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 { getUserInfo } from "../../api/user.js";
|
||||||
import { LOGIN_STATUS, UID } from '../../config/cache';
|
import { LOGIN_STATUS, UID } from '../../config/cache';
|
||||||
import Cache from '../../utils/cache';
|
import Cache from '../../utils/cache';
|
||||||
import { USER_INFO } from '../../config/cache';
|
import { USER_INFO } from '../../config/cache';
|
||||||
|
|
||||||
const state = {
|
const state = {
|
||||||
location: Cache.get('LOCATION_DATA') || {},
|
location: Cache.get('LOCATION_DATA',true) || {},
|
||||||
token: Cache.get(LOGIN_STATUS) || null,
|
token: Cache.get(LOGIN_STATUS) || null,
|
||||||
backgroundColor: "#fff",
|
backgroundColor: "#fff",
|
||||||
userInfo: null,
|
userInfo: null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user