| | |
| | | <view class="value"> |
| | | <view class="">0 公里</view> |
| | | <view class="btn" @click="getLocation"> |
| | | <u-icon |
| | | name="map" |
| | | :color="$store.state.primaryColor" |
| | | class="mr6" |
| | | ></u-icon> |
| | | <image class="icon mr6" src="../../static/driver/position.png"></image> |
| | | 重新定位 |
| | | </view> |
| | | </view> |
| | |
| | | getLocation() { |
| | | uni.getLocation({ |
| | | type: 'wgs84', |
| | | |
| | | success: function (res) { |
| | | console.log(res); |
| | | console.log('当前位置的经度:' + res.longitude) |
| | | console.log('当前位置的纬度:' + res.latitude) |
| | | } |
| | |
| | | font-size: 28rpx; |
| | | color: $uni-color-primary; |
| | | display: flex; |
| | | align-items: center; |
| | | .icon{ |
| | | width: 30rpx; |
| | | height: 30rpx; |
| | | } |
| | | } |
| | | } |
| | | } |