|
|
|
@ -100,7 +100,7 @@
|
|
|
|
|
<u-text :text="mapData.address" color="#AFB5BE" size="28"></u-text> |
|
|
|
|
</view> |
|
|
|
|
<view class="button" style="width:50rpx;height:50rpx;"> |
|
|
|
|
<u-image mode="widthFix" width="=50" height="50" :src="staticImage.position" @click="callPostion"></u-image> |
|
|
|
|
<u-image mode="widthFix" width="=50" height="50" :src="staticImage.position" @click="callPosition"></u-image> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="pop-add"></view> |
|
|
|
@ -137,7 +137,7 @@
|
|
|
|
|
<view class="icon" style="margin-right:20rpx;"> |
|
|
|
|
<u-image mode="widthFix" width="32" height="32" :src="staticImage.listPosition"></u-image> |
|
|
|
|
</view> |
|
|
|
|
<view class="value col " @click="callLocal(item.lat,item.lng)"> |
|
|
|
|
<view class="value col " @click="callLocal(item.lat,item.lng,item.name)"> |
|
|
|
|
<u-text :text="item.address" color="#AFB5BE" size="28" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; "></u-text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -506,7 +506,7 @@ export default {
|
|
|
|
|
afterCreateMap(){ |
|
|
|
|
this.getServiceList(true); |
|
|
|
|
}, |
|
|
|
|
callPostion(){ |
|
|
|
|
callPosition(){ |
|
|
|
|
const latitude=parseFloat(this.mapData.lat); |
|
|
|
|
const longitude=parseFloat(this.mapData.lng); |
|
|
|
|
uni.openLocation({ |
|
|
|
@ -515,13 +515,13 @@ export default {
|
|
|
|
|
name:this.mapData.name, |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
callLocal(lat,lng){ |
|
|
|
|
callLocal(lat,lng,name = ''){ |
|
|
|
|
const latitude=parseFloat(lat); |
|
|
|
|
const longitude=parseFloat(lng); |
|
|
|
|
uni.openLocation({ |
|
|
|
|
latitude:latitude, |
|
|
|
|
longitude:longitude, |
|
|
|
|
name:this.mapData.name, |
|
|
|
|
name:name, |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
callPhone(phone){ |
|
|
|
|