This commit is contained in:
yanran200730
2022-07-29 09:31:13 +08:00
parent 166d8801e6
commit f979551fd4

View File

@@ -6,7 +6,7 @@
<script>
import Tabbar from './components/Tabbar.vue'
import { mapActions } from "vuex"
import { mapActions, mapState } from "vuex"
export default {
name: 'AppCountryAlbum',
@@ -39,8 +39,12 @@ export default {
this.$refs?.TabPage?.show()
},
computed: {
...mapState['wxwork']
},
methods: {
...mapActions(['injectJWeixin']),
...mapActions(['injectJWeixin', 'agentSign']),
onChange(e) {
this.params = e.params
@@ -48,30 +52,40 @@ export default {
},
getLocation () {
this.injectJWeixin(['getLocation']).then(() => {
wx.getLocation({
type: 'wgs84',
success: res => {
var lat = res.latitude
var lng = res.longitude
this.$http.post('/api/appdvcpconfig/apiForward', `https://apis.map.qq.com/ws/geocoder/v1/?location=${lat},${lng}&key=3RZBZ-LZUCF-CT6J5-NWKZH-FCWOQ-UUFKY&get_poi=1`).then(res => {
if (res.code === 0) {
const data = res.data.result
uni.setStorageSync('address', {
lat,
lng,
address: data.address,
cityCode: `${data.ad_info.adcode}`
})
this.getWeather(`${data.ad_info.adcode}`)
}
})
},
error: res => {
console.log(res)
}
this.agentSign({
corpId: this.wxwork.config.corpId,
suiteId: this.wxwork.config.suiteId
}).then(() => {
this.injectJWeixin(['getLocation']).then(() => {
wx.getLocation({
type: 'wgs84',
success: res => {
var lat = res.latitude
var lng = res.longitude
this.$http.post('/api/appdvcpconfig/apiForward', `https://apis.map.qq.com/ws/geocoder/v1/?location=${lat},${lng}&key=3RZBZ-LZUCF-CT6J5-NWKZH-FCWOQ-UUFKY&get_poi=1`).then(res => {
if (res.code === 0) {
const data = res.data.result
uni.setStorageSync('address', {
lat,
lng,
address: data.address,
cityCode: `${data.ad_info.adcode}`
})
this.address = {
...uni.getStorageSync('address')
}
this.getWeather(`${data.ad_info.adcode}`)
}
})
},
error: res => {
console.log(res)
}
})
}).catch(e => {
})
}).catch(e => {
})
},