34 lines
597 B
JavaScript
34 lines
597 B
JavaScript
|
const util = require('../../../utils/util.js')
|
||
|
|
||
|
const formatLocation = util.formatLocation
|
||
|
|
||
|
Page({
|
||
|
onShareAppMessage() {
|
||
|
return {
|
||
|
title: '获取位置',
|
||
|
path: 'packageAPI/pages/get-location/get-location'
|
||
|
}
|
||
|
},
|
||
|
|
||
|
data: {
|
||
|
hasLocation: false,
|
||
|
},
|
||
|
getLocation() {
|
||
|
const that = this
|
||
|
wx.getLocation({
|
||
|
success(res) {
|
||
|
console.log(res)
|
||
|
that.setData({
|
||
|
hasLocation: true,
|
||
|
location: formatLocation(res.longitude, res.latitude)
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
clear() {
|
||
|
this.setData({
|
||
|
hasLocation: false
|
||
|
})
|
||
|
}
|
||
|
})
|