Merge pull request '更新' (#1) from xiaozy into master
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
@@ -12,7 +12,7 @@ router.beforeEach(async (to, from, next) => {
|
||||
let store = useStore() //获取状态
|
||||
let token = getToken() //获取cookie
|
||||
// removeToken()
|
||||
store.getPosition()
|
||||
// store.getPosition()
|
||||
|
||||
if (!token) {
|
||||
let paramsTarget = obtainUrlPathParameterTarget(location.href)
|
||||
|
||||
@@ -27,22 +27,27 @@ const instance = defineStore('user', {
|
||||
|
||||
actions: {
|
||||
getPosition() {
|
||||
// initAMap().then(() => {
|
||||
initAMap().then(() => {
|
||||
// console.log(3)
|
||||
// let AMap = Vue.prototype.$AMap
|
||||
// let geolocation = new AMap.Geolocation({
|
||||
// // enableHighAccuracy: true // 是否使用高精度定位,默认:true
|
||||
// })
|
||||
// geolocation.getCurrentPosition(function (status, result) {
|
||||
// console.log('status', status)
|
||||
// console.log('result', result)
|
||||
// })
|
||||
// })
|
||||
// return
|
||||
let AMap = Vue.prototype.$AMap
|
||||
let geolocation = new AMap.Geolocation({
|
||||
// enableHighAccuracy: true // 是否使用高精度定位,默认:true
|
||||
})
|
||||
geolocation.getCurrentPosition(function (status, result) {
|
||||
console.log(2)
|
||||
if (status === 'complete') {
|
||||
let { lat: latitude, lng: longitude } = result.position
|
||||
this.position = { latitude, longitude }
|
||||
console.log('this.position', this.position)
|
||||
}
|
||||
})
|
||||
})
|
||||
return
|
||||
|
||||
if (navigator?.geolocation?.getCurrentPosition) {
|
||||
navigator.geolocation.getCurrentPosition(
|
||||
position => {
|
||||
console.log('position.coords', position.coords)
|
||||
let { latitude, longitude } = position.coords
|
||||
this.position = { latitude, longitude }
|
||||
},
|
||||
|
||||
@@ -19,6 +19,9 @@
|
||||
import homeNavBar from '@/components/homeNavBar.vue'
|
||||
import listItem from '@/components/listItem.vue'
|
||||
import oilSiteApi from '@/api/oil-site.js'
|
||||
|
||||
import initAMap from '@/utils/amap.js'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
homeNavBar,
|
||||
@@ -122,17 +125,20 @@ export default {
|
||||
return !position?.latitude && !position?.longitude ? true : false
|
||||
},
|
||||
getlist() {
|
||||
let position = this.$pinia.state.value.user.position
|
||||
// console.log('position', position)
|
||||
// console.log(Object.assign(this.page.params, position), position, '地理位置数据')
|
||||
if (this.positionChenk(position)) {
|
||||
position = JSON.parse(localStorage.getItem('position'))
|
||||
if (this.positionChenk(position)) {
|
||||
// console.log(position, this.$pinia.state.value.user.position, '地理位置错误')
|
||||
this.finished = true
|
||||
return
|
||||
}
|
||||
}
|
||||
initAMap().then(() => {
|
||||
let AMap = this.$AMap
|
||||
let geolocation = new AMap.Geolocation({
|
||||
// enableHighAccuracy: true // 是否使用高精度定位,默认:true
|
||||
})
|
||||
geolocation.getCurrentPosition((status, result) => {
|
||||
if (status === 'complete') {
|
||||
let { lat: latitude, lng: longitude } = result.position
|
||||
|
||||
// this.position = { latitude, longitude }
|
||||
// console.log('this.position', this.position)
|
||||
|
||||
let position = { latitude, longitude }
|
||||
|
||||
this.page.params = Object.assign(this.page.params, position)
|
||||
this.loading = true
|
||||
oilSiteApi
|
||||
@@ -150,12 +156,14 @@ export default {
|
||||
this.loading = false
|
||||
this.refreshing = false
|
||||
}
|
||||
// console.log(res)
|
||||
})
|
||||
.catch(error => {
|
||||
this.finished = true
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user