Commit 01d56b68 authored by 潘永坪's avatar 潘永坪

组合票定位取消

parent 31d096d6
...@@ -344,37 +344,49 @@ export default { ...@@ -344,37 +344,49 @@ export default {
let newTimestamp=uni.getStorageSync('newTimestamp')||'' let newTimestamp=uni.getStorageSync('newTimestamp')||''
let token = uni.getStorageSync('token') let token = uni.getStorageSync('token')
if (token) { if (token) {
uni.getLocation({ let latitude = ''
success: res => { let longitude = ''
let latitude = res.latitude //纬度 //判断时间戳,之前请求失败,必须大于缓存时间戳才进行请求
let longitude = res.longitude //经度 if(newTimestamp){
this.showDistance = true if(Date.now()>newTimestamp){
//判断时间戳,之前请求失败,必须大于缓存时间戳才进行请求 this.initList(latitude, longitude)
if(newTimestamp){ }else{
if(Date.now()>newTimestamp){ this.showTip=true
this.initList(latitude, longitude) }
}else{ }else{
this.showTip=true this.initList(latitude, longitude)
} }
}else{ // uni.getLocation({//定位暂时注释
this.initList(latitude, longitude) // success: res => {
} // let latitude = res.latitude //纬度
}, // let longitude = res.longitude //经度
fail: res => { // this.showDistance = true
let latitude = '' // //判断时间戳,之前请求失败,必须大于缓存时间戳才进行请求
let longitude = '' // if(newTimestamp){
//判断时间戳,之前请求失败,必须大于缓存时间戳才进行请求 // if(Date.now()>newTimestamp){
if(newTimestamp){ // this.initList(latitude, longitude)
if(Date.now()>newTimestamp){ // }else{
this.initList(latitude, longitude) // this.showTip=true
}else{ // }
this.showTip=true // }else{
} // this.initList(latitude, longitude)
}else{ // }
this.initList(latitude, longitude) // },
} // fail: res => {
} // let latitude = ''
}) // let longitude = ''
// //判断时间戳,之前请求失败,必须大于缓存时间戳才进行请求
// if(newTimestamp){
// if(Date.now()>newTimestamp){
// this.initList(latitude, longitude)
// }else{
// this.showTip=true
// }
// }else{
// this.initList(latitude, longitude)
// }
// }
// })
} }
}, },
methods: { methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment